@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 693 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="M16 4a1 1 0 0 1 1 1v4.2l5.213-3.65a.5.5 0 0 1 .787.41v12.08a.5.5 0 0 1-.787.41L17 14.8V19a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zm-1 2H3v12h12zM8 8h2v3h3v2H9.999L10 16H8l-.001-3H5v-2h3zm13 .841-4 2.8v.718l4 2.8z"/>
</Svg>);
});
Icon.displayName = 'VideoAddLine';
/**
* Remix Icon: Video Add Line
* @see {@link https://remixicon.com/icon/video-add-line Remix Icon Docs}
*/
export const VideoAddLine = Icon;