UNPKG

@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 3.47 kB
{"version":3,"sources":["../src/IconPinFlag/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPinFlag: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pin-flag, location\">\n <path\n d=\"M11.25 17.25V18H12.75V17.25H11.25ZM12 2.75L12.3779 2.10217L11.25 1.44422V2.75H12ZM18 6.25L18.3779 6.89783L19.4885 6.25L18.3779 5.60217L18 6.25ZM18.3779 5.60217L12.3779 2.10217L11.6221 3.39783L17.6221 6.89783L18.3779 5.60217ZM12.3779 10.3978L18.3779 6.89783L17.6221 5.60217L11.6221 9.10217L12.3779 10.3978ZM12.75 17.25V9.75H11.25V17.25H12.75ZM12.75 9.75V2.75H11.25V9.75H12.75ZM20.5 17.5C20.5 17.7489 20.3787 18.0592 20.0041 18.4182C19.6276 18.7791 19.043 19.1387 18.259 19.4566C16.6948 20.0907 14.4823 20.5 12 20.5V22C14.6264 22 17.0389 21.5698 18.8225 20.8467C19.7124 20.4859 20.4825 20.0375 21.0421 19.5011C21.6036 18.9629 22 18.2866 22 17.5H20.5ZM12 20.5C9.51773 20.5 7.30522 20.0907 5.74104 19.4566C4.95702 19.1387 4.37244 18.7791 3.99588 18.4182C3.62129 18.0592 3.5 17.7489 3.5 17.5H2C2 18.2866 2.39638 18.9629 2.95794 19.5011C3.51753 20.0375 4.28759 20.4859 5.17748 20.8467C6.96115 21.5698 9.37363 22 12 22V20.5ZM3.5 17.5C3.5 17.0733 3.88689 16.4558 5.08398 15.8425C6.22381 15.2585 7.87598 14.8054 9.82547 14.6079L9.67426 13.1155C7.60256 13.3255 5.7548 13.8133 4.39999 14.5075C3.10245 15.1723 2 16.1702 2 17.5H3.5ZM14.1745 14.6079C16.124 14.8054 17.7762 15.2585 18.916 15.8425C20.1131 16.4558 20.5 17.0733 20.5 17.5H22C22 16.1702 20.8976 15.1723 19.6 14.5075C18.2452 13.8133 16.3974 13.3255 14.3257 13.1155L14.1745 14.6079Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPinFlag;\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,sBACpCC,EAAA,cAAC,QACC,EAAE,mzCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPinFlag","props","React","CentralIconBase","IconPinFlag_default"]}