@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.15 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.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.504.28.28.593.523.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.898c.217-.227.406-.477.563-.75.212-.367.36-.765.45-1.189.173-.798.137-1.618-.021-2.401l-.144-.57a1 1 0 0 0-1.155-.666 6.16 6.16 0 0 0-1.898.778c-.656.403-1.195.912-1.562 1.548-.05.086-.095.173-.138.262a5.215 5.215 0 0 0-.93-1.28 5.315 5.315 0 0 0-1.503-1.04 6.906 6.906 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.66a4.79 4.79 0 0 1-.66-.25 3.333 3.333 0 0 1-.943-.646A3.333 3.333 0 0 1 8.5 4.91a5.09 5.09 0 0 1-.25-.66m6.972.5.006.23c0 .228-.022.45-.067.66a2.094 2.094 0 0 1-.228.61c-.185.32-.485.604-.877.845l-.279.154-.005-.228c0-.228.022-.45.068-.661.049-.227.124-.431.227-.61.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 = memo(Icon);