@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.
11 lines • 4.25 kB
Source Map (JSON)
{
"version": 3,
"sources": ["src/CentralIconBase/index.tsx", "src/IconAirplay/index.tsx"],
"sourcesContent": [
"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",
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconAirplay: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"airplay\"><path d=\"M18.5 16C17.9477 16 17.5 16.4477 17.5 17C17.5 17.5523 17.9477 18 18.5 18V16ZM19.362 4.32698L18.908 5.21799L18.908 5.21799L19.362 4.32698ZM20.673 5.63803L21.564 5.18404V5.18404L20.673 5.63803ZM3.32698 5.63803L4.21799 6.09202L3.32698 5.63803ZM4.63803 4.32698L5.09202 5.21799L4.63803 4.32698ZM5.5 18C6.05228 18 6.5 17.5523 6.5 17C6.5 16.4477 6.05228 16 5.5 16V18ZM3 14.5H4V8.8H3H2V14.5H3ZM7.8 4V5H16.2V4V3H7.8V4ZM21 8.8H20V14.5H21H22V8.8H21ZM21 14.5H20C20 15.3284 19.3284 16 18.5 16V17V18C20.433 18 22 16.433 22 14.5H21ZM16.2 4V5C17.0566 5 17.6389 5.00078 18.089 5.03755C18.5274 5.07337 18.7516 5.1383 18.908 5.21799L19.362 4.32698L19.816 3.43597C19.3306 3.18868 18.8139 3.09012 18.2518 3.04419C17.7014 2.99922 17.0236 3 16.2 3V4ZM21 8.8H22C22 7.97642 22.0008 7.2986 21.9558 6.74817C21.9099 6.18608 21.8113 5.66937 21.564 5.18404L20.673 5.63803L19.782 6.09202C19.8617 6.24842 19.9266 6.47262 19.9624 6.91104C19.9992 7.36113 20 7.94342 20 8.8H21ZM19.362 4.32698L18.908 5.21799C19.2843 5.40973 19.5903 5.71569 19.782 6.09202L20.673 5.63803L21.564 5.18404C21.1805 4.43139 20.5686 3.81947 19.816 3.43597L19.362 4.32698ZM3 8.8H4C4 7.94342 4.00078 7.36113 4.03755 6.91104C4.07337 6.47262 4.1383 6.24842 4.21799 6.09202L3.32698 5.63803L2.43597 5.18404C2.18868 5.66937 2.09012 6.18608 2.04419 6.74817C1.99922 7.2986 2 7.97642 2 8.8H3ZM7.8 4V3C6.97642 3 6.2986 2.99922 5.74817 3.04419C5.18608 3.09012 4.66937 3.18868 4.18404 3.43597L4.63803 4.32698L5.09202 5.21799C5.24842 5.1383 5.47262 5.07337 5.91104 5.03755C6.36113 5.00078 6.94342 5 7.8 5V4ZM3.32698 5.63803L4.21799 6.09202C4.40973 5.71569 4.71569 5.40973 5.09202 5.21799L4.63803 4.32698L4.18404 3.43597C3.43139 3.81947 2.81947 4.43139 2.43597 5.18404L3.32698 5.63803ZM5.5 17V16C4.67157 16 4 15.3284 4 14.5H3H2C2 16.433 3.567 18 5.5 18V17Z\" fill=\"currentColor\"/><path d=\"M12 15L12.7809 14.3753C12.5911 14.1381 12.3038 14 12 14C11.6962 14 11.4089 14.1381 11.2191 14.3753L12 15ZM8 20L7.21913 19.3753C6.979 19.6755 6.93218 20.0867 7.0987 20.4332C7.26522 20.7797 7.61559 21 8 21V20ZM16 20V21C16.3844 21 16.7348 20.7797 16.9013 20.4332C17.0678 20.0867 17.021 19.6755 16.7809 19.3753L16 20ZM12 15L11.2191 14.3753L7.21913 19.3753L8 20L8.78087 20.6247L12.7809 15.6247L12 15ZM8 20V21H16V20V19H8V20ZM16 20L16.7809 19.3753L12.7809 14.3753L12 15L11.2191 15.6247L15.2191 20.6247L16 20Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAirplay;\n"
],
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA61E,EAA71E,IAAqB,EAAO,UAAU,WAAU,gBAAC,OAAD,CAAM,EAAE,yvDAAyvD,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,wfAAwf,KAAK,eAAc,CAAI,GAGv1E",
"debugId": "E3CC3CF842BEF21C64756E2164756E21",
"names": []
}