@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 578 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="M3 4H21V6H3V4ZM3 19H21V21H3V19ZM11 14H21V16H11V14ZM11 9H21V11H11V9ZM3 12.5L7 9V16L3 12.5Z"/>
</Svg>);
};
Icon.displayName = 'IndentDecrease';
/**
* Remix Icon: Indent Decrease
* @see {@link https://remixicon.com/icon/indent-decrease Remix Icon Docs}
*/
export const IndentDecrease = memo(Icon);