UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 483 B
import * as React from "react"; import Svg, { Circle, Path } from "react-native-svg"; function SvgClock(props) { return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props }, React.createElement(Circle, { cx: 12, cy: 12, r: 7.25, stroke: "currentColor", strokeWidth: 1.5 }), React.createElement(Path, { stroke: "currentColor", strokeWidth: 1.5, d: "M12 8v4l2 2" }))); } export default SvgClock;