UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.72 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.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="m14.112 3.744 7.444 3.761a1.51 1.51 0 0 1 .763 1.775c-.39 1.331-.347 1.89-.092 2.521.257.638.079 1.449-.587 1.87l-10.284 6.51c-.431.273-.98.315-1.457.082l-3.84-1.895-1.604-.805-1.14-.582-.696-.365-.36-.196-.261-.15C.978 15.655.66 14.405.666 13.45c.004-.971.338-2.184 1.265-2.85l.3-.207.858-.561 2.045-1.306 7.508-4.715a1.5 1.5 0 0 1 1.47-.066Zm5.921 6.944-8.673 5.49-.108.063-.111.052c-.11.408-.148.701-.144.973.002.162.02.328.055.517l.042.197 9.148-5.79-.072-.249a4.3 4.3 0 0 1-.138-.996zM2.8 12.678a2.3 2.3 0 0 0-.134.78c-.003.672.237 1.023.365 1.1l.308.175.626.333 1.77.903L9.01 17.6a5 5 0 0 1-.014-.303 5 5 0 0 1 .114-1.113l.067-.288zm11.164-5.764a1 1 0 0 0-1.028 1.712l.1.06 2.1 1.1a1 1 0 0 0 1.028-1.712l-.1-.06z"/> </G> </Svg>); }); Icon.displayName = 'Book4Fill'; /** * MingCute Icon: Book 4 Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Book4Fill = Icon;