@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 602 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 19H21V21H3V19ZM13 13.1716L19.0711 7.1005L20.4853 8.51472L12 17L3.51472 8.51472L4.92893 7.1005L11 13.1716V2H13V13.1716Z"/>
</Svg>);
};
Icon.displayName = 'DownloadLine';
/**
* Remix Icon: Download Line
* @see {@link https://remixicon.com/icon/download-line Remix Icon Docs}
*/
export const DownloadLine = memo(Icon);