@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.46 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="M14.408 3.001c1.178 0 2.231.716 2.67 1.797l.064.174.553 1.66c.12.36.458.604.837.604.807.002 1.616.187 2.23.739.594.532.877 1.27.969 2.061.175 1.524-.32 3.603-1.268 6.085-.42 1.098-1.107 2.306-1.633 3.162-.64 1.042-1.745 1.643-2.911 1.71l-.22.006H9.593a2.88 2.88 0 0 1-2.67-1.797l-.064-.174-.553-1.66a.88.88 0 0 0-.837-.604c-.807-.002-1.616-.187-2.23-.739-.594-.532-.877-1.27-.969-2.061-.175-1.524.32-3.603 1.268-6.085.42-1.098 1.107-2.306 1.633-3.162.64-1.042 1.745-1.643 2.911-1.71l.22-.006zm4.18 6.235h-.844c-.953 0-1.8.588-2.14 1.467l-.057.168-2.321 7.739-.066.198-.078.191H15.7c.604 0 1.138-.293 1.426-.762.511-.832 1.119-1.911 1.47-2.83l.24-.648a25 25 0 0 0 .473-1.46l.141-.52c.276-1.086.364-1.918.295-2.514-.055-.475-.197-.694-.318-.802-.106-.095-.302-.2-.686-.223zm-6.873 7.448q-.253.053-.516.071l-.264.01H8.212l.544 1.63a.88.88 0 0 0 .724.597l.112.007h.422c.552 0 1.043-.334 1.25-.835l.046-.129zm-.797-11.683H8.3c-.605 0-1.138.293-1.426.762-.511.832-1.119 1.911-1.47 2.83l-.24.648a24 24 0 0 0-.473 1.46l-.141.52c-.276 1.086-.364 1.918-.295 2.514.055.475.197.694.318.802.106.095.302.2.686.223l.153.004h.843c.953 0 1.8-.588 2.14-1.467l.057-.168 2.321-7.739.066-.198zm3.196 4.235h-1.049c-.805 0-1.515.528-1.746 1.299l-.95 3.17a4.3 4.3 0 0 1-.483 1.06h1.049c.805 0 1.515-.529 1.746-1.3l.95-3.17a4.3 4.3 0 0 1 .483-1.06M14.408 5h-.422c-.552 0-1.043.334-1.25.835l-.046.129-.405 1.351q.253-.054.516-.071l.264-.01h2.723l-.543-1.63a.88.88 0 0 0-.725-.597z"/>
</G>
</Svg>);
});
Icon.displayName = 'CopilotLine';
/**
* MingCute Icon: Copilot Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const CopilotLine = Icon;