import * as React from "react"; import { IconWrapper } from "../icon-wrapper"; import { ISvgIcons } from "../type"; export const ViewsIcon: React.FC = ({ color = "currentColor", ...rest }) => { const clipPathId = React.useId(); return ( ); };