@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 963 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.00488 3.00275H21.0049C21.5572 3.00275 22.0049 3.45046 22.0049 4.00275V20.0027C22.0049 20.555 21.5572 21.0027 21.0049 21.0027H3.00488C2.4526 21.0027 2.00488 20.555 2.00488 20.0027V4.00275C2.00488 3.45046 2.4526 3.00275 3.00488 3.00275ZM4.00488 5.00275V19.0027H20.0049V5.00275H4.00488ZM9.00488 11.0027H11.0049V13.0027H9.00488V15.0027H7.00488V13.0027H5.00488V11.0027H7.00488V9.00275H9.00488V11.0027ZM13.0049 11.0027H19.0049V13.0027H13.0049V11.0027Z"/>
</Svg>);
};
Icon.displayName = 'IncreaseDecreaseLine';
/**
* Remix Icon: Increase Decrease Line
* @see {@link https://remixicon.com/icon/increase-decrease-line Remix Icon Docs}
*/
export const IncreaseDecreaseLine = memo(Icon);