@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 = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M13.9998 4.99988L21.0001 11.9999L13.9998 18.9999V13.0001H7.9998L7.99978 11.0001H13.9998V4.99988ZM3.99985 18.9999L3.99985 4.99988H5.99985V18.9999H3.99985Z"/>
</Svg>);
};
Icon.displayName = 'ExpandRightFill';
/**
* Remix Icon: Expand Right Fill
* @see {@link https://remixicon.com/icon/expand-right-fill Remix Icon Docs}
*/
export const ExpandRightFill = memo(Icon);