@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.79 kB
JavaScript
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="M12.642 3.81c.402-.25.894-.294 1.328-.129l.142.063 7.444 3.761a1.51 1.51 0 0 1 .763 1.775c-.39 1.331-.347 1.89-.092 2.521.24.595.1 1.342-.46 1.781l-.127.09-10.284 6.509c-.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.306zm7.391 6.878-8.673 5.49q-.106.067-.219.115c-.11.408-.148.701-.144.973.002.163.02.328.055.517l.042.197 9.148-5.79a4.3 4.3 0 0 1-.21-1.245zM2.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.3 5.3 0 0 1 .18-1.4L2.8 12.677Zm16.657-3.992-5.995-3.03L6.702 9.9l-2.198 1.399 6.026 3.04zm-6.843-1.35a1 1 0 0 1 1.244-.47l.106.048 2.1 1.1a1 1 0 0 1-.822 1.82l-.106-.048-2.1-1.1a1 1 0 0 1-.422-1.35"/>
</G>
</Svg>);
});
Icon.displayName = 'Book4Line';
/**
* MingCute Icon: Book 4 Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Book4Line = Icon;