@nex-ui/react
Version:
🎉 A beautiful, modern, and reliable React component library.
21 lines (18 loc) • 491 B
JavaScript
import { jsx } from 'react/jsx-runtime';
const IndeterminateIcon = ()=>{
return /*#__PURE__*/ jsx("svg", {
stroke: "currentColor",
strokeWidth: 2,
viewBox: "0 0 24 24",
"aria-hidden": true,
focusable: false,
children: /*#__PURE__*/ jsx("line", {
x1: "18",
x2: "6",
y1: "12",
y2: "12"
})
});
};
IndeterminateIcon.displayName = 'IndeterminateIcon';
export { IndeterminateIcon };