iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 447 B
JavaScript
import * as React from "react";
import Svg, { Rect } from "react-native-svg";
function SvgStop(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Rect, { width: 12.5, height: 12.5, x: 5.75, y: 5.75, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, rx: 1 })));
}
export default SvgStop;