react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 484 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgAlarmFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M12 22a9 9 0 110-18 9 9 0 010 18zm1-9V8h-2v7h5v-2h-3zM1.747 6.282l3.535-3.535 1.415 1.414L3.16 7.697 1.747 6.282zm16.97-3.535l3.536 3.535-1.414 1.415-3.536-3.536 1.415-1.414z" />
</Svg>
);
}
export default SvgAlarmFill;