@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 628 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 11H21V13H3V11ZM18 18V21H16V18H13L17 14L21 18H18ZM8 18V21H6V18H3L7 14L11 18H8ZM18 6H21L17 10L13 6H16V3H18V6ZM8 6H11L7 10L3 6H6V3H8V6Z"/>
</Svg>);
};
Icon.displayName = 'AlignVertically';
/**
* Remix Icon: Align Vertically
* @see {@link https://remixicon.com/icon/align-vertically Remix Icon Docs}
*/
export const AlignVertically = memo(Icon);