UNPKG

@szum-tech/design-system

Version:

Szum-Tech design system with tailwindcss support

90 lines (87 loc) 3.51 kB
import { jsxs, jsx } from 'react/jsx-runtime'; export * from '@radix-ui/react-icons'; // src/icons/google-logo.tsx function GoogleLogoIcon(props) { return /* @__PURE__ */ jsxs( "svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", strokeWidth: "2", stroke: "currentColor", fill: "none", strokeLinecap: "round", strokeLinejoin: "round", ...props, children: [ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ jsx( "path", { d: "M12 2a9.96 9.96 0 0 1 6.29 2.226a1 1 0 0 1 .04 1.52l-1.51 1.362a1 1 0 0 1 -1.265 .06a6 6 0 1 0 2.103 6.836l.001 -.004h-3.66a1 1 0 0 1 -.992 -.883l-.007 -.117v-2a1 1 0 0 1 1 -1h6.945a1 1 0 0 1 .994 .89c.04 .367 .061 .737 .061 1.11c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10z", strokeWidth: "0", fill: "currentColor" } ) ] } ); } function LoadingIcon(props) { return /* @__PURE__ */ jsx( "svg", { xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", fill: "currentColor", version: "1.1", viewBox: "0 0 26.349 26.35", xmlSpace: "preserve", ...props, children: /* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsxs("g", { children: [ /* @__PURE__ */ jsx("circle", { cx: "13.792", cy: "3.082", r: "3.082" }), /* @__PURE__ */ jsx("circle", { cx: "13.792", cy: "24.501", r: "1.849" }), /* @__PURE__ */ jsx("circle", { cx: "6.219", cy: "6.218", r: "2.774" }), /* @__PURE__ */ jsx("circle", { cx: "21.365", cy: "21.363", r: "1.541" }), /* @__PURE__ */ jsx("circle", { cx: "3.082", cy: "13.792", r: "2.465" }), /* @__PURE__ */ jsx("circle", { cx: "24.501", cy: "13.791", r: "1.232" }), /* @__PURE__ */ jsx("path", { d: "M4.694,19.84c-0.843,0.843-0.843,2.207,0,3.05c0.842,0.843,2.208,0.843,3.05,0c0.843-0.843,0.843-2.207,0-3.05 C6.902,18.996,5.537,18.988,4.694,19.84z" }), /* @__PURE__ */ jsx("circle", { cx: "21.364", cy: "6.218", r: "0.924" }) ] }) }) } ); } function Auth0LogoIcon(props) { return /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...props, children: [ /* @__PURE__ */ jsx("title", {}), /* @__PURE__ */ jsx( "path", { d: "M21.98 7.448L19.62 0H4.347L2.02 7.448c-1.352 4.312.03 9.206 3.815 12.015L12.007 24l6.157-4.552c3.755-2.81 5.182-7.688 3.815-12.015l-6.16 4.58 2.343 7.45-6.157-4.597-6.158 4.58 2.358-7.433-6.188-4.55 7.63-.045L12.008 0l2.356 7.404 7.615.044z", fill: "currentColor" } ) ] }); } function XLogoIcon(props) { return /* @__PURE__ */ jsx( "svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", id: "Layer_1", width: "24px", height: "24px", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx( "path", { d: "M14.095479,10.316482L22.286354,1h-1.940718l-7.115352,8.087682L7.551414,1H1l8.589488,12.231093L1,23h1.940717 l7.509372-8.542861L16.448587,23H23L14.095479,10.316482z M11.436522,13.338465l-0.871624-1.218704l-6.924311-9.68815h2.981339 l5.58978,7.82155l0.867949,1.218704l7.26506,10.166271h-2.981339L11.436522,13.338465z", fill: "currentColor" } ) } ); } export { Auth0LogoIcon, GoogleLogoIcon, LoadingIcon, XLogoIcon };