iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 448 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgDotsHorizontal(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { fill: "currentColor", d: "M13 12a1 1 0 11-2 0 1 1 0 012 0zM9 12a1 1 0 11-2 0 1 1 0 012 0zM17 12a1 1 0 11-2 0 1 1 0 012 0z" })));
}
export default SvgDotsHorizontal;