UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.73 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"> <Path d="M24 0v24H0V0zM12.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/> <Path fill={color} d="m8.907 2.6 3.083 3.918 1.961-3.397a1 1 0 0 1 1.366-.366l3.464 2a1 1 0 0 1 .119 1.652l-3.918 3.082 3.397 1.962a1 1 0 0 1 .366 1.366l-2 3.464a1 1 0 0 1-.577.457L16.82 20H17a1 1 0 0 1 0 2H7a1 1 0 1 1 0-2h.18l.83-4.144-2.791-1.611a1 1 0 0 1-.118-1.652L9.018 9.51 5.621 7.55a1 1 0 0 1-.366-1.366l2-3.464a1 1 0 0 1 1.652-.12M12.165 13h-.33L9.95 16.352 9.22 20h5.56l-.73-3.648L12.166 13Zm.335 3a.5.5 0 0 1 .492.41l.008.09v1a.5.5 0 0 1-.41.492L12.5 18h-1a.5.5 0 0 1-.492-.41L11 17.5v-1a.5.5 0 0 1 .41-.492L11.5 16zm-2.463-4.747-2.539 1.999 1.32.761 1.5-2.598zm3.878-.07-.161.28 1.998 2.539.761-1.32-2.598-1.5Zm-2.098-2.366-.5.866.866.5.5-.866zm-3.569-3.82-.761 1.32 2.598 1.5.161-.28zm6.935-.01-1.5 2.598.28.161 2.539-1.998z"/> </G> </Svg>); }); Icon.displayName = 'DutchWindmillLine'; /** * MingCute Icon: Dutch Windmill Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const DutchWindmillLine = Icon;