@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.
1 lines • 4.78 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconCopilot/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCopilot: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"copilot\">\n <path\n d=\"M11.9974 21C6.15238 21 1.91016 17.2628 1.75 16.1919V13.6936C1.85891 12.8882 2.61741 11.5313 3.78463 11.0452C3.80128 10.9555 3.81538 10.8618 3.83075 10.7657C3.86791 10.531 3.90762 10.2732 3.99219 9.98076C3.73466 9.32925 3.66675 8.59053 3.66675 7.85694C3.66675 6.74117 3.83075 5.5882 4.55466 4.67121C5.2965 3.73114 6.46884 3.22968 8.04478 3.05398C9.58997 2.88212 10.943 3.09758 11.8168 4.03509C11.8808 4.10306 11.9398 4.1736 11.9949 4.2467C12.0512 4.1736 12.1153 4.10306 12.1781 4.03509C13.0519 3.09758 14.4049 2.88212 15.9501 3.05398C17.526 3.22968 18.6984 3.73114 19.4402 4.67121C20.1654 5.5882 20.3281 6.74117 20.3281 7.85694C20.3281 8.59053 20.2602 9.32925 20.0027 9.98076C20.0873 10.2732 20.1283 10.531 20.1641 10.7657C20.1795 10.8631 20.1949 10.9555 20.2115 11.0452C21.3954 11.539 22.1616 12.9318 22.25 13.7321V16.1329C22.25 17.1153 17.9565 21 11.9974 21ZM11.9974 19.0955C14.9187 19.0955 17.8707 17.6719 18.4062 17.2577V11.8006L18.3768 11.6519C17.749 11.9212 16.9994 12.0251 16.1641 12.0251C14.6958 12.0251 13.526 11.6057 12.6919 10.7541C12.417 10.4712 12.184 10.1503 12 9.80121C11.8142 10.1504 11.5795 10.4713 11.303 10.7541C10.4702 11.6057 9.30041 12.0251 7.83081 12.0251C6.99544 12.0251 6.24719 11.9212 5.61809 11.6519L5.58863 11.8006V17.2577C6.12547 17.6719 9.07619 19.0955 11.9974 19.0955ZM10.4138 5.34709C10.1665 5.08289 9.59766 4.81742 8.25875 4.96619C6.95316 5.11111 6.36378 5.48432 6.06397 5.86394C5.7475 6.26408 5.59119 6.87583 5.59119 7.85694C5.59119 8.87396 5.75647 9.35875 5.98581 9.61525C6.19338 9.84738 6.65078 10.1013 7.83338 10.1013C8.92628 10.1013 9.54897 9.79993 9.93206 9.40877C10.3357 8.9958 10.6073 8.34814 10.7226 7.41704C10.8725 6.21791 10.6752 5.62796 10.4138 5.34709ZM15.7374 4.96619C14.3998 4.81742 13.8309 5.08289 13.5836 5.34709C13.3223 5.62796 13.1237 6.21791 13.2736 7.41704C13.3902 8.34814 13.6618 8.9958 14.0654 9.40877C14.4485 9.79993 15.0699 10.1013 16.1641 10.1013C17.3454 10.1013 17.8041 9.84738 18.0116 9.61525C18.241 9.35875 18.4062 8.87396 18.4062 7.85694C18.4062 6.87583 18.2487 6.26408 17.9322 5.86394C17.6337 5.48432 17.0443 5.11111 15.7374 4.96619Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M9.75781 13.3076C10.2816 13.3076 10.7188 13.7459 10.7188 14.2694V16.1945C10.7188 16.718 10.2816 17.1564 9.75781 17.1564C9.23403 17.1564 8.79688 16.718 8.79688 16.1945V14.2694C8.79688 13.7459 9.23403 13.3076 9.75781 13.3076ZM15.2031 14.2694V16.1945C15.2031 16.718 14.766 17.1564 14.2422 17.1564C13.7184 17.1564 13.2812 16.718 13.2812 16.1945V14.2694C13.2812 13.7459 13.7184 13.3076 14.2422 13.3076C14.766 13.3076 15.2031 13.7459 15.2031 14.2694Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCopilot;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,WACpCC,EAAA,cAAC,QACC,EAAE,mjEACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+bACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCopilot","props","React","CentralIconBase","IconCopilot_default"]}