iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 702 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgDots(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M12.5 6a.5.5 0 11-1 0 .5.5 0 011 0zM12.5 12a.5.5 0 11-1 0 .5.5 0 011 0zM18.5 6a.5.5 0 11-1 0 .5.5 0 011 0zM18.5 12a.5.5 0 11-1 0 .5.5 0 011 0zM6.5 6a.5.5 0 11-1 0 .5.5 0 011 0zM6.5 12a.5.5 0 11-1 0 .5.5 0 011 0zM12.5 18a.5.5 0 11-1 0 .5.5 0 011 0zM18.5 18a.5.5 0 11-1 0 .5.5 0 011 0zM6.5 18a.5.5 0 11-1 0 .5.5 0 011 0z" })));
}
export default SvgDots;