UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 619 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Book3Line = /* @__PURE__ */ memo(function Book3Line(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M21 4H7a2 2 0 1 0 0 4h14v13a1 1 0 0 1-1 1H7a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h13a1 1 0 0 1 1 1zM5 18a2 2 0 0 0 2 2h12V10H7a4 4 0 0 1-2-.535zM20 7H7a1 1 0 0 1 0-2h13z"/> </Svg>); }); /** * Remix Icon: Book 3 Line * @see {@link https://remixicon.com/icon/book-3-line Remix Icon Docs} */ export { Book3Line };