UNPKG

@ozen-ui/icons

Version:

A collection of icons

6 lines (5 loc) 562 B
import { __assign } from "tslib"; import React, { forwardRef } from 'react'; export var MinusSIcon = forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", fill: "none", viewBox: "0 0 16 16" }, props, { ref: ref }), React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M1 8c0-.414.303-.75.677-.75h12.646c.374 0 .677.336.677.75s-.303.75-.677.75H1.677C1.303 8.75 1 8.414 1 8", clipRule: "evenodd" }))); }); MinusSIcon.displayName = 'MinusSIcon';