@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 • 2.86 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconAirpodRight/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconAirpodRight: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"airpod-right\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M7 13C8.38071 13 9.5 14.1193 9.5 15.5C9.5 16.3571 9.06764 17.1121 8.41016 17.5625C8.61595 17.7154 8.79159 17.8981 8.9375 18.1104C9.40478 18.7903 9.49901 19.6731 9.49902 20.5V21H8.49902V20.5C8.49901 19.706 8.39768 19.0906 8.11328 18.6768C7.85805 18.3055 7.3856 18.002 6.37988 18.002V18H5V21H4V13H7ZM5 17H7C7.82843 17 8.5 16.3284 8.5 15.5C8.5 14.6716 7.82843 14 7 14H5V17Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15 3C17.7614 3 20 5.23858 20 8V21H16V12.8994C15.6769 12.965 15.3425 13 15 13C13.364 13 11.9122 12.2137 11 10.999V5C11.9122 3.78565 13.3643 3 15 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAirpodRight;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,qXACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconAirpodRight","props","React","CentralIconBase","IconAirpodRight_default"]}