@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 806 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="M21 3H3V5L21 5V3ZM15 9V15H18V9H15ZM13 8C13 7.44772 13.4477 7 14 7L19 7C19.5523 7 20 7.44772 20 8V16C20 16.5523 19.5523 17 19 17H14C13.4477 17 13 16.5523 13 16V8ZM9 9L9 19H6L6 9H9ZM5 7C4.44772 7 4 7.44772 4 8L4 20C4 20.5523 4.44772 21 5 21H10C10.5523 21 11 20.5523 11 20L11 8C11 7.44772 10.5523 7 10 7L5 7Z"/>
</Svg>);
};
Icon.displayName = 'AlignItemTopLine';
/**
* Remix Icon: Align Item Top Line
* @see {@link https://remixicon.com/icon/align-item-top-line Remix Icon Docs}
*/
export const AlignItemTopLine = memo(Icon);