UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.94 kB
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.66a.88.88 0 0 0 .725.597l.112.007h.055c.812 0 1.58.205 2.175.738s.877 1.272.969 2.062c.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.642-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-.725-.597l-.112-.007h-.055c-.812 0-1.58-.205-2.175-.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-.006zm-2.693 13.683q-.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-.13zm2.4-7.448h-1.05c-.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.407 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 = 'CopilotFill'; /** * MingCute Icon: Copilot Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const CopilotFill = Icon;