@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 572 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const FlutterFill = /* @__PURE__ */ memo(function FlutterFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="m13.504 2.001-10 10 3.083 3.083 13.08-13.083zm-.005 9.198-5.376 5.42L13.496 22h6.188l-5.387-5.4 5.389-5.4z"/>
</Svg>);
});
/**
* Remix Icon: Flutter Fill
* @see {@link https://remixicon.com/icon/flutter-fill Remix Icon Docs}
*/
export { FlutterFill };