@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 • 2.91 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconVolumeUp/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVolumeUp: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"volume-up\">\n <path\n d=\"M1.75 7.75V7H1V7.75H1.75ZM6 7.75V8.5H6.1957L6.36645 8.40438L6 7.75ZM12.25 4.25H13V2.97041L11.8835 3.59562L12.25 4.25ZM12.25 19.75L11.8835 20.4044L13 21.0296V19.75H12.25ZM6 16.25L6.36645 15.5956L6.1957 15.5H6V16.25ZM1.75 16.25H1V17H1.75V16.25ZM19.75 8.75V8H18.25V8.75H19.75ZM18.25 15.25V16H19.75V15.25H18.25ZM15.75 11.25H15V12.75H15.75V11.25ZM22.25 12.75H23V11.25H22.25V12.75ZM1.75 8.5H6V7H1.75V8.5ZM6.36645 8.40438L12.6165 4.90438L11.8835 3.59562L5.63355 7.09562L6.36645 8.40438ZM11.5 4.25V19.75H13V4.25H11.5ZM12.6165 19.0956L6.36645 15.5956L5.63355 16.9044L11.8835 20.4044L12.6165 19.0956ZM6 15.5H1.75V17H6V15.5ZM2.5 16.25V7.75H1V16.25H2.5ZM18.25 8.75V12H19.75V8.75H18.25ZM18.25 12V15.25H19.75V12H18.25ZM15.75 12.75H19V11.25H15.75V12.75ZM19 12.75H22.25V11.25H19V12.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVolumeUp;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,aACpCC,EAAA,cAAC,QACC,EAAE,owBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconVolumeUp","props","React","CentralIconBase","IconVolumeUp_default"]}