UNPKG

@central-icons-react/round-outlined-radius-3-stroke-2

Version:

A collection of round outlined React icons with 3px radius and 2px stroke width, designed for use in React applications.

1 lines 3.03 kB
{"version":3,"sources":["../src/IconStarLines/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconStarLines: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"star-lines, features, favorite, award, to the moon\"\n >\n <path\n d=\"M9 16.0001L5 20.0001M7 11.0001L3 15.0001M16 16.0001L12 20.0001M12.7832 4.92434L10.4614 5.46206C9.7271 5.63213 9.43777 6.5226 9.93188 7.0918L11.4941 8.89151C11.6716 9.096 11.7586 9.36374 11.7352 9.63351L11.5292 12.0078C11.464 12.7587 12.2215 13.3091 12.9155 13.015L15.1099 12.0854C15.3592 11.9797 15.6408 11.9797 15.8901 12.0854L18.0845 13.015C18.7785 13.3091 19.536 12.7587 19.4708 12.0078L19.2648 9.63351C19.2414 9.36374 19.3284 9.096 19.5059 8.89151L21.0681 7.0918C21.5622 6.5226 21.2729 5.63213 20.5386 5.46206L18.2168 4.92434C17.953 4.86324 17.7253 4.69777 17.5857 4.46576L16.3568 2.42382C15.9681 1.778 15.0319 1.778 14.6432 2.42382L13.4143 4.46576C13.2747 4.69777 13.047 4.86324 12.7832 4.92434Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStarLines;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,sDAEVC,EAAA,cAAC,QACC,EAAE,+rBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconStarLines","props","React","CentralIconBase","IconStarLines_default"]}