@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 652 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="M16 21L11.2381 12.2698L15 6L23 21H16ZM8 10L14 21H2L8 10ZM5.5 8C4.11929 8 3 6.88071 3 5.5C3 4.11929 4.11929 3 5.5 3C6.88071 3 8 4.11929 8 5.5C8 6.88071 6.88071 8 5.5 8Z"/>
</Svg>);
};
Icon.displayName = 'LandscapeFill';
/**
* Remix Icon: Landscape Fill
* @see {@link https://remixicon.com/icon/landscape-fill Remix Icon Docs}
*/
export const LandscapeFill = memo(Icon);