@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.49 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014-.034.614q.001.018.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M20.262 2.434a1 1 0 0 1 .944.454l.078.126.109.202.081.174.083.205c.315.838.552 2.297-.542 3.956a2.6 2.6 0 0 1-.276.345 1 1 0 0 1-.03.368 16 16 0 0 1-.75 2.136c-.551 1.263-1.328 2.54-2.423 3.636-2.05 2.05-4.742 2.991-6.844 3.43-.825.173-1.576.271-2.186.327l-.487.038-.21.013-.128 1.063-.098.906-.038.412-.037.518A5 5 0 0 0 7.5 21a1 1 0 1 1-2 0q0-.157.01-.36l.03-.437.043-.489.08-.772.058-.502c.205-1.732.446-3.426.987-5.09.625-1.92 1.75-4.379 3.757-6.385 1.573-1.574 3.432-2.611 5.106-3.29l.452-.177.44-.16q.108-.038.215-.073l.42-.136.402-.12.384-.107.363-.093.34-.08.315-.07.546-.105.577-.091zM19.76 4.53l-.322.062-.37.079-.415.098-.222.058-.47.13q-.244.072-.501.156l-.527.18c-1.615.584-3.508 1.54-5.054 3.086-1.704 1.703-2.7 3.84-3.269 5.59-.165.507-.293.977-.39 1.388l-.104.462.465-.043a17 17 0 0 0 1.702-.267c1.92-.401 4.179-1.228 5.838-2.888.85-.849 1.484-1.857 1.954-2.905-.976.52-2.018.986-2.759 1.233a1 1 0 0 1-.632-1.898c.674-.224 1.758-.713 2.754-1.265.494-.274.946-.552 1.301-.808l.226-.17.17-.141.065-.06.095-.095a1 1 0 0 0 .05-.063c.527-.798.52-1.48.415-1.919M5 1a1 1 0 0 1 .898.56l.048.117.13.378a3 3 0 0 0 1.684 1.8l.185.07.378.129a1 1 0 0 1 .117 1.844l-.117.048-.378.13a3 3 0 0 0-1.8 1.684l-.07.185-.129.378a1 1 0 0 1-1.844.117l-.048-.117-.13-.378a3 3 0 0 0-1.684-1.8l-.185-.07-.378-.129a1 1 0 0 1-.117-1.844l.117-.048.378-.13a3 3 0 0 0 1.8-1.684l.07-.185.129-.378A1 1 0 0 1 5 1m0 3.196A5 5 0 0 1 4.196 5q.448.355.804.804.355-.448.804-.804A5 5 0 0 1 5 4.196"/>
</G>
</Svg>);
});
Icon.displayName = 'QuillPenAiLine';
/**
* MingCute Icon: Quill Pen Ai Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const QuillPenAiLine = Icon;