@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 635 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-6 6h-2v3H9v2h2.999L12 16h2l-.001-3H17v-2h-3z"/>
</Svg>);
});
Icon.displayName = 'HealthBookFill';
/**
* Remix Icon: Health Book Fill
* @see {@link https://remixicon.com/icon/health-book-fill Remix Icon Docs}
*/
export const HealthBookFill = Icon;