aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/subtask.js
blob: 97602aac74e05c7247ebedb44ddc0e20a813aeca (plain)
1
2
3
4
5
import * as React from "react";

const IconSubtask = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-subtask" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><line x1={6} y1={9} x2={12} y2={9} /><line x1={4} y1={5} x2={8} y2={5} /><path d="M6 5v11a1 1 0 0 0 1 1h5" /><rect x={12} y={7} width={8} height={4} rx={1} /><rect x={12} y={15} width={8} height={4} rx={1} /></svg>;

export default IconSubtask;