aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/text-wrap-disabled.js
blob: b242bb94bd59b562aca0931067a3225d4a2bcd07 (plain)
1
2
3
4
5
import * as React from "react";

const IconTextWrapDisabled = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-text-wrap-disabled" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><line x1={4} y1={6} x2={14} y2={6} /><line x1={4} y1={18} x2={14} y2={18} /><path d="M4 12h17l-3 -3m0 6l3 -3" /></svg>;

export default IconTextWrapDisabled;