UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

10 lines (9 loc) 795 B
import * as React from "react"; import Svg, { Path, Circle } from "react-native-svg"; function SvgSettingsSliders(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", strokeWidth: 1.5, d: "M4.75 8h2.5M12.75 8h6.5M4.75 16h7.5M17.75 16h1.5" }), React.createElement(Circle, { cx: 10, cy: 8, r: 2.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }), React.createElement(Circle, { cx: 15, cy: 16, r: 2.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }))); } export default SvgSettingsSliders;