@central-icons-react/square-outlined-radius-0-stroke-1.5
Version:
A collection of square outlined React icons with 0px radius and 1.5px stroke width, designed for use in React applications.
1 lines • 4.58 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconFingerPrint1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFingerPrint1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"finger-print-1, touch-id\">\n <path\n d=\"M15.1528 18.6357L14.4275 18.4449L15.1528 18.6357ZM5.54189 19.0176L5.25426 19.7103L6.63957 20.2855L6.9272 19.5929L5.54189 19.0176ZM13.7166 20.7512L13.466 21.4581L14.8798 21.9593L15.1304 21.2524L13.7166 20.7512ZM18.9519 17.1158L18.8151 17.8532L20.2899 18.1268L20.4267 17.3894L18.9519 17.1158ZM2.53289 14.9776L2.35596 15.7064L3.81363 16.0603L3.99055 15.3314L2.53289 14.9776ZM12.7593 11.0028V10.2528H11.2593V11.0028H12.7593ZM10.6955 19.1517L11.4071 19.3885L10.6955 19.1517ZM9.27098 20.7986L8.97733 21.4887L10.3576 22.076L10.6512 21.3859L9.27098 20.7986ZM12.0089 3.5C16.1526 3.5 19.5117 6.85913 19.5117 11.0028H21.0117C21.0117 6.03071 16.981 2 12.0089 2V3.5ZM8.63247 11.0028C8.63247 9.13809 10.1441 7.62642 12.0089 7.62642V6.12642C9.31571 6.12642 7.13247 8.30966 7.13247 11.0028H8.63247ZM12.0089 7.62642C13.8736 7.62642 15.3853 9.13809 15.3853 11.0028H16.8853C16.8853 8.30966 14.7021 6.12642 12.0089 6.12642V7.62642ZM14.4275 18.4449C14.2217 19.227 13.9843 19.9962 13.7166 20.7512L15.1304 21.2524C15.4119 20.4583 15.6617 19.6492 15.8781 18.8265L14.4275 18.4449ZM19.5117 11.0028C19.5117 13.0916 19.3195 15.1347 18.9519 17.1158L20.4267 17.3894C20.811 15.3185 21.0117 13.1838 21.0117 11.0028H19.5117ZM3.00605 11.0028C3.00605 12.3731 2.84202 13.7041 2.53289 14.9776L3.99055 15.3314C4.3276 13.943 4.50605 12.4932 4.50605 11.0028H3.00605ZM8.72619 4.25417C9.71685 3.7713 10.8301 3.5 12.0089 3.5V2C10.5974 2 9.25987 2.32534 8.06897 2.90581L8.72619 4.25417ZM4.50605 11.0028C4.50605 9.00447 5.28632 7.18997 6.56033 5.84473L5.47122 4.81329C3.94391 6.42601 3.00605 8.6057 3.00605 11.0028H4.50605ZM14.9534 16.0324C14.8115 16.8488 14.6357 17.6534 14.4275 18.4449L15.8781 18.8265C16.0971 17.9941 16.282 17.1478 16.4312 16.2893L14.9534 16.0324ZM15.3853 11.0028C15.3853 12.0222 15.333 13.029 15.2311 14.021L16.7232 14.1743C16.8304 13.1315 16.8853 12.0735 16.8853 11.0028H15.3853ZM11.2593 11.0028C11.2593 13.769 10.8111 16.4289 9.98384 18.9149L11.4071 19.3885C12.2845 16.7517 12.7593 13.932 12.7593 11.0028H11.2593ZM9.98384 18.9149C9.77095 19.5546 9.53294 20.1829 9.27098 20.7986L10.6512 21.3859C10.929 20.7331 11.1814 20.0669 11.4071 19.3885L9.98384 18.9149ZM7.13247 11.0028C7.13247 12.7964 6.90685 14.5363 6.48284 16.1959L7.93616 16.5672C8.39091 14.7872 8.63247 12.9227 8.63247 11.0028H7.13247ZM6.04668 17.6724C5.89349 18.128 5.72502 18.5766 5.54189 19.0176L6.9272 19.5929C7.12355 19.12 7.30419 18.639 7.46847 18.1504L6.04668 17.6724Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFingerPrint1;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,4BACpCC,EAAA,cAAC,QACC,EAAE,+2EACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFingerPrint1","props","React","CentralIconBase","IconFingerPrint1_default"]}