UNPKG

@icons-pack/react-simple-icons

Version:

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

28 lines (25 loc) 2.63 kB
import { jsxs, jsx } from 'react/jsx-runtime'; import * as React from 'react'; const defaultColor = "#006699"; const SiWikisource = React.forwardRef(function SiWikisource2({ title = "Wikisource", 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: "M11.928 0a12 12 0 0 0-9.696 5.04h5.052c.072-.42.192-.864.588-1.248.24-.276.804-.24 1.2-.312.396-.084 1.044-1.104 1.68-1.404.768.396 1.608.996 2.04 1.296.744-.588 1.392-1.596 1.68-.78.24-.396.636-.648 1.08-.756.204-.048.48-.036.624-.06.168-.072.504-.324.792-.408-.456.696-.516 2.7-.528 3.672v.42c.66.144 1.5.036 1.788-.42h3.54A11.988 11.988 0 0 0 12 0zm-.432 3c.204.564.372 1.128.312 1.68-.072.36.084.336.372.192s.432-.312.864-.444c.324-.084.096-.312-.06-.48-.48-.408-.984-.672-1.488-.96zm-9.96 3.12A11.94 11.94 0 0 0 0 12a12 12 0 0 0 24 0 11.928 11.928 0 0 0-1.536-5.88H3.36c.624 1.32.972 2.04 3.12 1.752.744-.12 1.2-.192 1.2.576.096.468.456.624 1.38.456.36-.132.684-.336.948-.168h.024v.012a.048.048 0 0 1 .012.024c0 .12-.228.372.048.684.684.66 1.344 1.248 2.04 1.92.156.768.84.66 1.38.504.816-.24.456.12.756.492.168.264.552.972 1.008.72.012 1.296.336 2.22 1.008 2.724-.204.756-.396 1.8-.036 2.424-.6-.192-.36.972-.54 1.464-.312.816-.576.78-.864.852.264.288.6.588 1.104.768v.012l.024.012c0 .276.048.516.216.684-.312-.072-.684-.504-1.296-.228-.672.3-.816.096-.576-.348.312-.684-.36-.936-1.056-1.104v-.276c.144-.048.312-.096.504-.12.3-.06.504-.168.48-.6-.012-.6-.036-1.2 0-1.776a7.2 7.2 0 0 1 .216-1.452c.084-.24.528-.456.156-.768a50.4 50.4 0 0 0-4.656-4.2l-.072-.024 1.98 3.516c.24.588.696 1.2-.12 1.356v.012c-.036.564.072 1.536-.312 1.728-.432.3-.468.576-.504 1.032-.072.48-.072 1.032.072 1.416.144.06.288.096.444.12l.384.048c-.516.672-1.152.468-1.524-.156l-2.004-3.096c.096-3.012.156-5.04-.06-7.56-1.104.096-2.22.012-3.396-.672-.264-.48-.564-.432-1.068-.312.06-.444-.12-.876-.384-1.32l-.12-1.116H1.548zm17.412 1.236c1.92-.048 1.368 3.336 1.368 4.98h.012l-.156.84-.24 1.452c.084.72-.108.816-.24 1.224 0 1.584-.216 2.04-1.548 3.24a2.592 2.592 0 0 1-1.404-2.7c.048-.288.24-.612-.012-1.08a8.88 8.88 0 0 1 .168-4.02.72.72 0 0 1 .24-.024.756.756 0 0 0 .684-.888 3.96 3.96 0 0 0 .72-.24c-.972-.912-.624-2.76.408-2.784" }) ] } ); }); export { SiWikisource as default, defaultColor };