react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 413 B
JavaScript
import * as React from 'react';
export function SvgEllipsisVSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M16 6a1.999 1.999 0 100 4 1.999 1.999 0 100-4zm0 8a1.999 1.999 0 100 4 1.999 1.999 0 100-4zm0 8a1.999 1.999 0 100 4 1.999 1.999 0 100-4z" })));
}
export default SvgEllipsisVSolid;