@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 639 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M21 4V18.7215C21 18.9193 20.8833 19.0986 20.7024 19.1787L12 23.0313L3.29759 19.1787C3.11667 19.0986 3 18.9193 3 18.7215V4H1V2H23V4H21ZM8 12V14H16V12H8ZM8 8V10H16V8H8Z"/>
</Svg>);
};
Icon.displayName = 'HonourFill';
/**
* Remix Icon: Honour Fill
* @see {@link https://remixicon.com/icon/honour-fill Remix Icon Docs}
*/
export const HonourFill = memo(Icon);