@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 684 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="M15 4v4h4v12H5V4zM3.999 2A.995.995 0 0 0 3 2.992v18.016a1 1 0 0 0 .993.992h16.014A1 1 0 0 0 21 20.992V7l-5-5zM15 11.667l-4.88-3.253a.4.4 0 0 0-.621.333v6.505a.4.4 0 0 0 .622.333L15 12.333a.4.4 0 0 0 0-.666"/>
</Svg>);
});
Icon.displayName = 'FileVideoLine';
/**
* Remix Icon: File Video Line
* @see {@link https://remixicon.com/icon/file-video-line Remix Icon Docs}
*/
export const FileVideoLine = Icon;