UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.01 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="M7.047 2.026a1 1 0 0 0-1.022 1.021c.016.706.187 1.7.667 2.717.267.566.61 1.074 1.04 1.504q.421.42.933.732H6a2 2 0 0 0-2 2v2a2 2 0 0 0 1.014 1.74c.139 3.665 1.275 6.218 1.837 7.27.35.656 1.023.99 1.684.99h6.93c.66 0 1.334-.334 1.684-.99.562-1.052 1.698-3.605 1.837-7.27A2 2 0 0 0 20 12v-2a2 2 0 0 0-2-2h-1.898q.326-.34.563-.75.316-.552.45-1.189c.173-.798.137-1.618-.021-2.401l-.144-.57a1 1 0 0 0-1.155-.666 6.2 6.2 0 0 0-1.898.778c-.656.403-1.195.912-1.562 1.548q-.074.129-.138.262a5.2 5.2 0 0 0-.93-1.28 5.3 5.3 0 0 0-1.503-1.04 6.9 6.9 0 0 0-2.717-.666M8.25 4.25c.226.07.447.15.66.25.368.174.686.389.944.647.257.257.472.575.646.943.094.217.18.433.249.66a5 5 0 0 1-.66-.25 3.3 3.3 0 0 1-.943-.646A3.3 3.3 0 0 1 8.5 4.91a5 5 0 0 1-.25-.66m6.972.5.006.23q0 .344-.067.66a2.1 2.1 0 0 1-.228.61c-.185.32-.485.604-.877.845l-.279.154-.005-.228q0-.343.068-.661.073-.341.227-.61c.185-.32.485-.603.877-.845zM7.028 14h9.944c-.174 3.023-1.093 5.125-1.551 6H8.579c-.458-.875-1.377-2.977-1.55-6ZM18 12H6v-2h12z"/> </G> </Svg>); }); Icon.displayName = 'FlowerpotLine'; /** * MingCute Icon: Flowerpot Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const FlowerpotLine = Icon;