UNPKG

@icons-pack/react-simple-icons

Version:

This package provides the Simple Icons packaged as a set of React components.

28 lines (25 loc) 3.06 kB
import { jsxs, jsx } from 'react/jsx-runtime'; import * as React from 'react'; const defaultColor = "#3056D3"; const SiChangedetection = React.forwardRef(function SiChangedetection2({ title = "Change Detection", color = "currentColor", size = 24, ...others }, ref) { if (color === "default") { color = defaultColor; } return /* @__PURE__ */ jsxs( "svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, fill: color, viewBox: "0 0 24 24", ref, ...others, children: [ /* @__PURE__ */ jsx("title", { children: title }), /* @__PURE__ */ jsx("path", { d: "M20.9535 7.662c-.0205-.0506-.1713-.1965-.1713-.1965l-.1134-.1182-1.8924-1.9745s-.1737-.1688-.216-.2014c-.0916-.0724-.24-.1074-.357-.1086-.1242 0-.316.134-.3932.2304-.0723.0917-.1326.2678-.0928.3775.0193.0543.1544.2232.1544.2232l1.3701 1.363-3.5545.0023-.2026-.0108s-.5018.0796-.6344.1242c-.1967.0675-.415.2195-.573.3534-.047.0398-.217.2316-.217.2316l-2.2809 2.6161.7213.7213 2.2169-2.4617s.1942-.199.2376-.234c.1447-.117.2991-.2364.48-.2799.0603-.0144.3281-.0253.3281-.0253h3.2952l-1.065 1.0904s-.158.199-.1737.234c-.0543.1121-.0712.3123-.0157.4233.0422.0832.1761.2256.269.2388.1242.017.2557.047.3642-.0169.0398-.024.1978-.1592.1978-.1592l2.1096-2.1095s.1628-.1315.193-.193c.0205-.041.035-.0989.018-.1423zM9.8919 12.74l-2.0662 2.37s-.2412.2485-.293.2931c-.1653.1412-.2413.1954-.4536.2823-.053.0217-.416.0663-.416.0663l-2.9105.0266s-.269.018-.3148.0265c-.1303.0253-.2606.129-.339.2207-.0952.111-.0711.369.0072.4933.0688.1074.2582.1834.3848.2002.0422.006.246.0157.246.0157h3.0794s.3823-.0386.4426-.0639c.3016-.1266.48-.228.7285-.4306.0869-.07.497-.4837.497-.4837l2.0962-2.3278zM3.4896 7.2797c.0423-.006.246-.0156.246-.0156H6.815s.3823.0386.4426.0639c.3016.1266.48.228.7286.4306.0868.07.4969.4836.4969.4836l6.2322 6.9221s.1942.199.2376.234c.1447.117.2991.2364.48.2799.0603.0144.328.0253.328.0253h3.2953l-1.065-1.0904s-.158-.199-.1737-.234c-.0543-.1121-.0712-.3124-.0157-.4233.0422-.0832.176-.2256.269-.2388.1242-.017.2557-.047.3642.0168.0398.0242.1978.1593.1978.1593l2.1096 2.1095s.1628.1315.193.193c.0205.041.035.099.018.1423-.0204.0507-.1712.1966-.1712.1966l-.1134.1182-1.8924 1.9745s-.1737.1689-.216.2014c-.0916.0724-.24.1074-.357.1086-.1242 0-.316-.134-.3932-.2304-.0723-.0917-.1326-.2678-.0928-.3775.0193-.0543.1544-.2232.1544-.2232l1.3701-1.363-3.5545-.0023-.2026.0108s-.5018-.0796-.6345-.1242c-.1966-.0675-.4149-.2195-.5729-.3534-.047-.0398-.217-.2316-.217-.2316l-6.2359-7.15s-.2412-.2485-.293-.2931c-.1653-.1411-.2413-.1954-.4536-.2822-.053-.0218-.416-.0664-.416-.0664l-2.9105-.0265s-.269-.0181-.3148-.0265c-.1303-.0254-.2606-.1291-.339-.2208-.0952-.111-.0711-.369.0072-.4933.0688-.1073.2582-.1833.3848-.2002zM12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0Zm0 1.2954A10.7047 10.7047 0 0 1 22.7048 12 10.7047 10.7047 0 0 1 12 22.7048 10.7047 10.7047 0 0 1 1.2954 12 10.7047 10.7047 0 0 1 12 1.2954Z" }) ] } ); }); export { SiChangedetection as default, defaultColor };