@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 366 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgTimerFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...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.968ZM11 8v6h2V8h-2ZM8 1h8v2H8V1Z" />
</Svg>
);
export default SvgTimerFill;