diff options
Diffstat (limited to 'icons-react/icons-js/building-fortress.js')
-rw-r--r-- | icons-react/icons-js/building-fortress.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/building-fortress.js b/icons-react/icons-js/building-fortress.js new file mode 100644 index 00000000..4aeed4d6 --- /dev/null +++ b/icons-react/icons-js/building-fortress.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBuildingFortress({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-building-fortress" 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="M7 21h1a1 1 0 0 0 1 -1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1 -1v-15l-3 -2l-3 2v6h-4v-6l-3 -2l-3 2v15a1 1 0 0 0 1 1h2m8 -2v1a1 1 0 0 0 1 1h2" /><path d="M7 7h0v.01" /><path d="M7 10h0v.01" /><path d="M7 13h0v.01" /><path d="M17 7h0v.01" /><path d="M17 10h0v.01" /><path d="M17 13h0v.01" /></svg>; +} + +export default IconBuildingFortress;
\ No newline at end of file |