@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 737 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="m17.654 1.7-2.782 2.533a9.1 9.1 0 0 1 3.49 1.973c3.512 3.2 3.512 8.388 0 11.588q-3.888 3.54-12.016 4.506l2.782-2.533a9.1 9.1 0 0 1-3.49-1.973c-3.512-3.2-3.533-8.369 0-11.588Q9.527 2.666 17.655 1.7M12 8c-2.485 0-4.5 1.79-4.5 4s2.015 4 4.5 4 4.5-1.79 4.5-4-2.015-4-4.5-4"/>
</Svg>);
});
Icon.displayName = 'TyphoonFill';
/**
* Remix Icon: Typhoon Fill
* @see {@link https://remixicon.com/icon/typhoon-fill Remix Icon Docs}
*/
export const TyphoonFill = Icon;