@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 687 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="M2 3H21.1384C21.4146 3 21.6385 3.22386 21.6385 3.5C21.6385 3.58701 21.6157 3.67252 21.5725 3.74807L18 10L21.5725 16.2519C21.7095 16.4917 21.6262 16.7971 21.3865 16.9341C21.3109 16.9773 21.2254 17 21.1384 17H4V22H2V3Z"/>
</Svg>);
};
Icon.displayName = 'Flag2Fill';
/**
* Remix Icon: Flag 2 Fill
* @see {@link https://remixicon.com/icon/flag-2-fill Remix Icon Docs}
*/
export const Flag2Fill = memo(Icon);