iconic-icons-rn
Version:
Iconic icons for React Native
10 lines (9 loc) • 975 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgKeyboard(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 6.75v10.5a2 2 0 002 2h10.5a2 2 0 002-2V6.75a2 2 0 00-2-2H6.75a2 2 0 00-2 2z" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M8.5 8a.5.5 0 11-1 0 .5.5 0 011 0zM8.5 12a.5.5 0 11-1 0 .5.5 0 011 0zM12.5 8a.5.5 0 11-1 0 .5.5 0 011 0zM12.5 12a.5.5 0 11-1 0 .5.5 0 011 0zM16.5 8a.5.5 0 11-1 0 .5.5 0 011 0zM16.5 12a.5.5 0 11-1 0 .5.5 0 011 0z" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M7.75 16.25h8.5" })));
}
export default SvgKeyboard;