@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 577 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="M11 4H21V6H11V4ZM6 7V11H4V7H1L5 3L9 7H6ZM6 17H9L5 21L1 17H4V13H6V17ZM11 18H21V20H11V18ZM9 11H21V13H9V11Z"/>
</Svg>);
};
Icon.displayName = 'LineHeight';
/**
* Remix Icon: Line Height
* @see {@link https://remixicon.com/icon/line-height Remix Icon Docs}
*/
export const LineHeight = memo(Icon);