Skip to content

PopiconsBulbLine icon does not render properly in @popicons/react version 0.0.22 #8

@GauthierPLM

Description

@GauthierPLM

The PopiconsBulbLine icon does not render properly with @popicons/react version 0.0.22:
Image

This is how it looks in version 0.0.17:
Image

When inspecting the code on npm, it seems some paths are missing in version 0.0.22.

This is the code of version 0.0.22:

export function PopiconsBulbLine(props) {
  return React.createElement(
    "svg",
    {
      xmlns: "http://www.w3.org/2000/svg",
      width: "20",
      height: "20",
      viewBox: "0 0 20 20",
      fill: "none",
      ...props,
    },
    React.createElement("path", {
      fillRule: "evenodd",
      clipRule: "evenodd",
      d: "M8.78724 10.4988C8.49522 10.2074 8.02221 10.2076 7.7304 10.4994C7.43842 10.7913 7.43842 11.2647 7.7304 11.5567L7.73162 11.5579L7.73322 11.5595L7.73754 11.5638L7.75051 11.5765C7.76113 11.5868 7.77566 11.6006 7.79372 11.6175C7.82978 11.6511 7.88049 11.6972 7.94384 11.7515C8.06977 11.8594 8.24971 12.0034 8.4674 12.1486C8.72997 12.3236 9.0905 12.5296 9.50518 12.6556V15.5137C9.50518 15.9266 9.83992 16.2617 10.2528 16.2617C10.6658 16.2617 11.0005 15.9269 11.0005 15.514V12.6556C11.4152 12.5296 11.7757 12.3236 12.0383 12.1486C12.256 12.0034 12.4359 11.8594 12.5618 11.7515C12.6252 11.6972 12.6759 11.6511 12.712 11.6175C12.73 11.6006 12.7445 11.5868 12.7551 11.5765L12.7682 11.5638L12.7725 11.5595L12.7741 11.5579L12.775 11.557C12.775 11.557 12.775 11.557 12.7682 11.5638L12.775 11.557C13.067 11.265 13.0673 10.7913 12.7753 10.4994C12.4838 10.2078 12.0114 10.2074 11.7193 10.498L11.7182 10.4991L11.7152 10.502C11.7108 10.5063 11.7028 10.5139 11.6917 10.5243C11.6693 10.5451 11.6344 10.577 11.5887 10.6161C11.4966 10.6951 11.365 10.8003 11.2088 10.9044C10.8722 11.1288 10.5266 11.2773 10.2528 11.2773C9.97914 11.2773 9.63345 11.1288 9.29686 10.9044C9.14072 10.8003 9.00913 10.6951 8.91699 10.6161C8.87131 10.577 8.83635 10.5451 8.814 10.5243C8.80286 10.5139 8.79493 10.5063 8.79046 10.502L8.7864 10.498",
      fill: "currentColor",
    }),
  );
}

Compared to version 0.0.17, which has 2 additonnal paths:

export function PopiconsBulbLine(props) {
  return React.createElement(
    "svg",
    {
      ...props,
      xmlns: "http://www.w3.org/2000/svg",
      width: "20",
      height: "20",
      viewBox: "0 0 20 20",
      fill: "none",
    },
    React.createElement("path", {
      d: "M10.2528 20C12.2673 20 13.1156 19.479 13.2298 17.5087C13.2458 17.2338 13.0202 17.0093 12.7449 17.0093H7.76051C7.48523 17.0093 7.25969 17.2338 7.27563 17.5087C7.38992 19.479 8.23829 20 10.2528 20Z",
      fill: "currentColor",
    }),
    React.createElement("path", {
      fillRule: "evenodd",
      clipRule: "evenodd",
      d: "M6.03263 3.07637C5.05958 4.04626 4.49533 5.4222 4.49533 7.0405C4.49533 8.74512 5.33115 9.85556 6.32911 11.0564C6.38637 11.1253 6.44458 11.1949 6.50343 11.2652C7.42785 12.3698 8.50818 13.6608 8.50818 15.514C8.50818 15.9269 8.17344 16.2617 7.76051 16.2617C7.34759 16.2617 7.01285 15.9269 7.01285 15.514C7.01285 14.2171 6.26831 13.3219 5.25916 12.1085C5.23264 12.0766 5.20594 12.0445 5.17907 12.0121C4.1706 10.7986 3 9.32341 3 7.0405C3 5.06613 3.69446 3.29566 4.977 2.01729C6.26103 0.737449 8.08492 0 10.2526 0C12.4204 0 14.2443 0.737447 15.5284 2.01728C16.811 3.29564 17.5055 5.06611 17.5055 7.0405C17.5055 9.32253 16.3359 10.8052 15.3272 12.0229C15.2978 12.0583 15.2687 12.0935 15.2397 12.1284C14.2324 13.3433 13.4926 14.2357 13.4926 15.514C13.4926 15.9269 13.1579 16.2617 12.7449 16.2617C12.332 16.2617 11.9973 15.9269 11.9973 15.514C11.9973 13.6796 13.0735 12.39 13.9949 11.286C14.056 11.2129 14.1163 11.1406 14.1756 11.069C15.1733 9.86458 16.0102 8.74601 16.0102 7.0405C16.0102 5.42222 15.4459 4.04628 14.4728 3.07639C13.5012 2.10796 12.0725 1.49533 10.2526 1.49533C8.43281 1.49533 7.00421 2.10796 6.03263 3.07637Z",
      fill: "currentColor",
    }),
    React.createElement("path", {
      fillRule: "evenodd",
      clipRule: "evenodd",
      d: "M8.78724 10.4988C8.49522 10.2074 8.02221 10.2076 7.7304 10.4994C7.43842 10.7913 7.43842 11.2647 7.7304 11.5567L7.73162 11.5579L7.73322 11.5595L7.73754 11.5638L7.75051 11.5765C7.76113 11.5868 7.77566 11.6006 7.79372 11.6175C7.82978 11.6511 7.88049 11.6972 7.94384 11.7515C8.06977 11.8594 8.24971 12.0034 8.4674 12.1486C8.72997 12.3236 9.0905 12.5296 9.50518 12.6556V15.5137C9.50518 15.9266 9.83992 16.2617 10.2528 16.2617C10.6658 16.2617 11.0005 15.9269 11.0005 15.514V12.6556C11.4152 12.5296 11.7757 12.3236 12.0383 12.1486C12.256 12.0034 12.4359 11.8594 12.5618 11.7515C12.6252 11.6972 12.6759 11.6511 12.712 11.6175C12.73 11.6006 12.7445 11.5868 12.7551 11.5765L12.7682 11.5638L12.7725 11.5595L12.7741 11.5579L12.775 11.557C12.775 11.557 12.775 11.557 12.7682 11.5638L12.775 11.557C13.067 11.265 13.0673 10.7913 12.7753 10.4994C12.4838 10.2078 12.0114 10.2074 11.7193 10.498L11.7182 10.4991L11.7152 10.502C11.7108 10.5063 11.7028 10.5139 11.6917 10.5243C11.6693 10.5451 11.6344 10.577 11.5887 10.6161C11.4966 10.6951 11.365 10.8003 11.2088 10.9044C10.8722 11.1288 10.5266 11.2773 10.2528 11.2773C9.97914 11.2773 9.63345 11.1288 9.29686 10.9044C9.14072 10.8003 9.00913 10.6951 8.91699 10.6161C8.87131 10.577 8.83635 10.5451 8.814 10.5243C8.80286 10.5139 8.79493 10.5063 8.79046 10.502L8.7864 10.498",
      fill: "currentColor",
    }),
  );
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions