Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | 3x 3x | import Svg, { Path } from "react-native-svg";
import { IconProps } from "@repo/types/icons";
import { colors } from "../themes";
export const BuildingIcon = ({
width = 32,
height = 32,
color = colors.icon.default,
}: IconProps) => (
<Svg
width={width}
height={height}
viewBox={`0 0 ${width} ${height}`}
fill="none"
>
<Path
d="M1.33325 29.3333H30.6666"
stroke={color}
strokeWidth={2}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M26.3733 29.3467V23.4"
stroke={color}
strokeWidth={2}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M26.3999 14.52C24.7732 14.52 23.4666 15.8267 23.4666 17.4534V20.48C23.4666 22.1066 24.7732 23.4133 26.3999 23.4133C28.0266 23.4133 29.3333 22.1066 29.3333 20.48V17.4534C29.3333 15.8267 28.0266 14.52 26.3999 14.52Z"
stroke={color}
strokeWidth={2}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M2.80005 29.3333V8.04003C2.80005 5.36003 4.13345 4.01334 6.78678 4.01334H15.0934C17.7468 4.01334 19.0667 5.36003 19.0667 8.04003V29.3333"
stroke={color}
strokeWidth={2}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M7.7334 11H14.3334"
stroke={color}
strokeWidth={2}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M7.7334 16H14.3334"
stroke={color}
strokeWidth={2}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M11 29.3333V24.3333"
stroke={color}
strokeWidth={2}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
|