UNPKG

@metamask/design-system-react

Version:
7 lines 423 B
import * as React from "react"; import { forwardRef } from "react"; const SvgFilter = (props, ref) => React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", ref: ref, ...props }, React.createElement("path", { d: "M10 18v-2h4v2zm-4-5v-2h12v2zM3 8V6h18v2z" })); const ForwardRef = forwardRef(SvgFilter); export default ForwardRef; //# sourceMappingURL=Filter.mjs.map