@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 • 4.1 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconVibeCodingBird/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVibeCodingBird: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"vibe-coding-bird, laptop, work\">\n <path\n d=\"M1.75 20.25C1.75 15.5839 5.32074 13.5638 8.4125 14.1897\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M6.75 20.2498H10.7M10.7 20.2498H20.2L22.25 13.0498H12.75L10.7 20.2498Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M17 5C17.5516 5.63061 17.9302 6.28903 18.1667 7.05714C18.9047 6.65121 19.6656 6.3 20.5 6.13143\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M7.90201 10.9929C5.63764 10.9929 3.80201 9.15083 3.80201 6.87857C3.8019 5.33571 4.31451 3.27857 6.36451 3.27857C7.55762 3.27857 9.4394 2.25 9.4394 2.25C10.0869 3.26228 11.0764 3.54532 12.002 2.76429C13.2097 3.97619 12.9029 5.15889 12.002 6.36429V6.87857C12.002 9.15083 10.1664 10.9929 7.90201 10.9929Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <rect\n width=\"4\"\n height=\"2.5\"\n transform=\"matrix(-1 0 0 1 8 6)\"\n fill=\"currentColor\"\n />\n <rect\n width=\"3\"\n height=\"2.5\"\n transform=\"matrix(-1 0 0 1 12 6)\"\n fill=\"currentColor\"\n />\n <path\n d=\"M9.4375 6.75H7.3875\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVibeCodingBird;\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,EAAsDC,GAE/DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kCACpCC,EAAA,cAAC,QACC,EAAE,0DACF,OAAO,eACP,YAAY,MACZ,cAAc,SACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,yEACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,iGACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,gTACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACAA,EAAA,cAAC,QACC,MAAM,IACN,OAAO,MACP,UAAU,uBACV,KAAK,eACP,EACAA,EAAA,cAAC,QACC,MAAM,IACN,OAAO,MACP,UAAU,wBACV,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconVibeCodingBird","props","React","CentralIconBase","IconVibeCodingBird_default"]}