diff options
Diffstat (limited to 'icons-react/icons-js/calendar-off.js')
-rw-r--r-- | icons-react/icons-js/calendar-off.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/calendar-off.js b/icons-react/icons-js/calendar-off.js new file mode 100644 index 00000000..14f090e2 --- /dev/null +++ b/icons-react/icons-js/calendar-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCalendarOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-calendar-off" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M19.823 19.824a2 2 0 0 1 -1.823 1.176h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 1.175 -1.823m3.825 -.177h9a2 2 0 0 1 2 2v9" /><line x1={16} y1={3} x2={16} y2={7} /><line x1={8} y1={3} x2={8} y2={4} /><path d="M4 11h7m4 0h5" /><line x1={11} y1={15} x2={12} y2={15} /><line x1={12} y1={15} x2={12} y2={18} /><line x1={3} y1={3} x2={21} y2={21} /></svg>; +} + +export default IconCalendarOff;
\ No newline at end of file |