@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 918 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="m8.65 17.26 3.392 2.162 3.392-2.161 1.86 1.185-5.252 3.346-5.252-3.346zm-.876-8.28 2.393-1.553L7.74 5.854 5.286 7.37zm1.84 1.19 2.39 1.548 2.391-1.547-2.39-1.552zm4.231 2.74 2.424 1.568 2.45-1.502-2.486-1.612zm-1.84-6.675 4.236-2.748 6.225 3.843-4.393 2.843 4.394 2.851-6.227 3.818-4.235-2.741-4.236 2.74-6.229-3.817 4.395-2.851L1.543 7.33l6.225-3.843zm1.836 1.192 2.394 1.553 2.488-1.61-2.455-1.517zm-3.677 5.483-2.39-1.547-2.485 1.613 2.451 1.502z"/>
</Svg>);
});
Icon.displayName = 'DropboxLine';
/**
* Remix Icon: Dropbox Line
* @see {@link https://remixicon.com/icon/dropbox-line Remix Icon Docs}
*/
export const DropboxLine = Icon;