UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.86 kB
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"> <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="M10.184 11.77c.029 1.06.603 2.334 1.956 3.462C13.317 16.212 15.353 17 17 17a7.05 7.05 0 0 0 1.669-.2 1 1 0 0 1 1.004 1.613 9.988 9.988 0 0 1-6.34 3.499.837.837 0 0 1-.31-.014C10.884 21.37 8.5 18.688 8.5 16c0-2.374.84-3.645 1.684-4.23m-.706-3.731a3.579 3.579 0 0 1 2.18 1.234 5.233 5.233 0 0 0-1.474.278C8.177 10.221 6.5 12.388 6.5 16c0 2.537 1.199 4.266 2.771 5.623-3.987-1.129-6.962-4.667-7.248-8.944a.9.9 0 0 1 .21-.642l.17-.196.324-.358.267-.281.149-.154.332-.333.378-.369.208-.197c1.91-1.803 3.9-2.368 5.417-2.11M12 2c4.76 0 8.742 3.325 9.752 7.779.36 1.585-.113 2.825-.827 3.688a5.03 5.03 0 0 1-2.09 1.476c-.965.341-2.05.327-2.912.176-.77-.135-1.73-.395-2.203-1.072a1 1 0 0 1 .109-1.277c.485-.49.709-.995.742-1.447a1.863 1.863 0 0 0-.045-.54c-.582-2.62-2.386-4.321-4.713-4.716-2.76-.469-5.379.957-7.315 2.808C3.81 4.883 7.568 2 12 2"/> </G> </Svg>); }; Icon.displayName = 'EdgeFill'; /** * MingCute Icon: Edge Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const EdgeFill = memo(Icon);