diff options
Diffstat (limited to 'icons-react/icons-js/face-mask.js')
-rw-r--r-- | icons-react/icons-js/face-mask.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/face-mask.js b/icons-react/icons-js/face-mask.js new file mode 100644 index 00000000..81833c8d --- /dev/null +++ b/icons-react/icons-js/face-mask.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFaceMask({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-face-mask" 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="M5.002 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222" /><path d="M19.002 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222" /><path d="M9 10h6" /><path d="M9 14h6" /><path d="M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z" /></svg>; +} + +export default IconFaceMask;
\ No newline at end of file |