@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 648 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M20 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-2H3v-2h2v-2H3v-2h2v-2H3V9h2V7H3V5h2V3a1 1 0 0 1 1-1zm-1 2H7v16h12zm-5 4v3h3v2h-3.001L14 16h-2l-.001-3H9v-2h3V8z"/>
</Svg>);
});
Icon.displayName = 'HealthBookLine';
/**
* Remix Icon: Health Book Line
* @see {@link https://remixicon.com/icon/health-book-line Remix Icon Docs}
*/
export const HealthBookLine = Icon;