@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 691 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function TaskIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "task",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M20.5 10.75V19.75H4.5V10.75M20.5 10.75V5.75H17.5M20.5 10.75H4.5M4.5 10.75V5.75H7.5M7.5 5.75H17.5M7.5 5.75V8.25M7.5 5.75V3.25M17.5 5.75V8.25M17.5 5.75V3.25M9.7002 14.7358L11.7002 16.7358L15.3002 13.1758",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { TaskIcon, TaskIcon as default };
//# sourceMappingURL=Task.js.map