@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 578 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.618 5.968 1.453-1.453 1.414 1.414-1.453 1.453A9 9 0 1 1 12 4c2.125 0 4.078.736 5.618 1.968M11 8v6h2V8zM8 1h8v2H8z"/>
</Svg>);
});
Icon.displayName = 'TimerFill';
/**
* Remix Icon: Timer Fill
* @see {@link https://remixicon.com/icon/timer-fill Remix Icon Docs}
*/
export const TimerFill = Icon;