@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 908 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="m11.292 3.814 2.018 5.707.396 1.116.007-4.81.01-4.818h4.27L18 11.871c.003 5.98-.003 10.89-.015 10.9s-.209 0-.436-.027c-.989-.118-2.29-.236-3.34-.282a15 15 0 0 1-.636-.038c-.003-.003-.273-.762-.776-2.184v-.004l-2.144-6.061-.34-.954-.008 4.586c-.006 4.365-.01 4.61-.057 4.61-.163 0-1.57.09-2.04.136-.308.027-.926.09-1.37.145-.446.051-.816.085-.823.078S6 17.867 6 11.883V1.002h.005V1h4.288l.028.08c.007.016.065.176.157.437l.641 1.778.173.496z"/>
</Svg>);
});
Icon.displayName = 'NetflixFill';
/**
* Remix Icon: Netflix Fill
* @see {@link https://remixicon.com/icon/netflix-fill Remix Icon Docs}
*/
export const NetflixFill = Icon;