@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 609 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="M6 3C4.34315 3 3 4.34315 3 6V18C3 19.6569 4.34315 21 6 21H18C19.6569 21 21 19.6569 21 18V6C21 4.34315 19.6569 3 18 3H6ZM16 11L11 18V13H8L13 6V11H16Z"/>
</Svg>);
};
Icon.displayName = 'AedFill';
/**
* Remix Icon: Aed Fill
* @see {@link https://remixicon.com/icon/aed-fill Remix Icon Docs}
*/
export const AedFill = memo(Icon);