UNPKG

@central-icons-react/square-filled-radius-0-stroke-1

Version:

A collection of square filled React icons with 0px radius and 1px stroke width, designed for use in React applications.

1 lines 3.58 kB
{"version":3,"sources":["../src/IconSteeringWheel/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSteeringWheel: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"steering-wheel, control, navigate, boot\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.5 1V3.01365C14.6087 3.12912 16.524 3.97046 18.0004 5.29208L19.4244 3.86809L20.1315 4.5752L18.7076 5.99917C20.0294 7.47565 20.8709 9.39115 20.9863 11.5H23V12.5H20.9863C20.8709 14.6088 20.0295 16.5242 18.7077 18.0006L20.1315 19.4244L19.4244 20.1315L18.0006 18.7077C16.5242 20.0295 14.6088 20.8709 12.5 20.9863V23H11.5V20.9863C9.39115 20.8709 7.47565 20.0294 5.99917 18.7076L4.5752 20.1315L3.86809 19.4244L5.29208 18.0004C3.97046 16.524 3.12912 14.6087 3.01365 12.5H1V11.5H3.01365C3.12912 9.39124 3.97053 7.47582 5.29225 5.99936L3.86809 4.5752L4.5752 3.86809L5.99936 5.29225C7.47582 3.97053 9.39124 3.12912 11.5 3.01365V1H12.5ZM11.5 4.01537C9.66717 4.1284 8.00133 4.85854 6.70769 6.00058L11.5 10.7929V4.01537ZM10.7929 11.5L6.00058 6.70769C4.85854 8.00133 4.1284 9.66717 4.01537 11.5H10.7929ZM4.01537 12.5C4.12839 14.3327 4.85847 15.9985 6.00041 17.2921L10.7925 12.5H4.01537ZM11.5 13.2067L6.7075 17.9992C8.00116 19.1414 9.66708 19.8716 11.5 19.9846V13.2067ZM12.5 19.9846C14.3328 19.8716 15.9987 19.1415 17.2923 17.9994L12.5 13.2071V19.9846ZM13.2071 12.5L17.9994 17.2923C19.1415 15.9987 19.8716 14.3328 19.9846 12.5H13.2071ZM19.9846 11.5C19.8716 9.66708 19.1414 8.00116 17.9992 6.7075L13.2067 11.5H19.9846ZM12.5 10.7925L17.2921 6.00041C15.9985 4.85847 14.3327 4.12839 12.5 4.01537V10.7925Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSteeringWheel;\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,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,2CAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2wCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSteeringWheel","props","React","CentralIconBase","IconSteeringWheel_default"]}