@vector-im/compound-design-tokens
Version:
Compound design tokens
19 lines • 608 B
JavaScript
import { forwardRef } from "react";
import { jsx as _jsx } from "react/jsx-runtime";
function MinusIcon(props, ref) {
return /*#__PURE__*/_jsx("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
fill: "currentColor",
viewBox: "0 0 24 24",
ref: ref,
...props,
children: /*#__PURE__*/_jsx("path", {
d: "M6 13a.97.97 0 0 1-.713-.287A.97.97 0 0 1 5 12q0-.424.287-.713A.97.97 0 0 1 6 11h12q.424 0 .712.287.288.288.288.713 0 .424-.288.713A.97.97 0 0 1 18 13z"
})
});
}
;
MinusIcon.displayName = "MinusIcon";
export default forwardRef(MinusIcon);