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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | 486x | interface IconProps {
height?: number;
width?: number;
gradient?: boolean;
isMenu?: boolean;
stroke?: string;
}
const EnterpriseIcon = ({
width = 24,
height = 24,
stroke = "#8F8F8F",
gradient,
}: IconProps) => {
if (gradient) {
return (
<svg
width={width}
height={height}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19 15.2466V18.7851C19 19.4601 18.2747 20 17.3682 20H14.1175V16.4421H9.89547V20H6.63182C5.72525 20 5 19.4601 5 18.7851V7.21488C5 6.53994 5.72525 6 6.63182 6H17.3682C18.2747 6 19 6.53994 19 7.21488V12.6818"
stroke="url(#paint0_linear_651_89341)"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9 15V11"
stroke="url(#paint1_linear_651_89341)"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9 9V8"
stroke="url(#paint2_linear_651_89341)"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M15 15V11"
stroke="url(#paint3_linear_651_89341)"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M15 9V8"
stroke="url(#paint4_linear_651_89341)"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 8V12"
stroke="url(#paint5_linear_651_89341)"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 14V15"
stroke="url(#paint6_linear_651_89341)"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9.22156 3H14.7665C15.4491 3 16 3.47586 16 4.06552V6H8V4.06552C8 3.47586 8.5509 3 9.23354 3H9.22156Z"
stroke="url(#paint7_linear_651_89341)"
strokeLinecap="round"
strokeLinejoin="round"
/>
<defs>
<linearGradient
id="paint0_linear_651_89341"
x1="20.3382"
y1="9.69811"
x2="4.34172"
y2="20.4008"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#72ECF0" />
<stop offset="1" stopColor="#528DDF" />
</linearGradient>
<linearGradient
id="paint1_linear_651_89341"
x1="10.0956"
y1="12.0566"
x2="8.48651"
y2="12.3257"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#72ECF0" />
<stop offset="1" stopColor="#528DDF" />
</linearGradient>
<linearGradient
id="paint2_linear_651_89341"
x1="10.0956"
y1="8.26415"
x2="8.95298"
y2="9.02863"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#72ECF0" />
<stop offset="1" stopColor="#528DDF" />
</linearGradient>
<linearGradient
id="paint3_linear_651_89341"
x1="16.0956"
y1="12.0566"
x2="14.4865"
y2="12.3257"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#72ECF0" />
<stop offset="1" stopColor="#528DDF" />
</linearGradient>
<linearGradient
id="paint4_linear_651_89341"
x1="16.0956"
y1="8.26415"
x2="14.953"
y2="9.02863"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#72ECF0" />
<stop offset="1" stopColor="#528DDF" />
</linearGradient>
<linearGradient
id="paint5_linear_651_89341"
x1="13.0956"
y1="9.0566"
x2="11.4865"
y2="9.32575"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#72ECF0" />
<stop offset="1" stopColor="#528DDF" />
</linearGradient>
<linearGradient
id="paint6_linear_651_89341"
x1="13.0956"
y1="14.2642"
x2="11.953"
y2="15.0286"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#72ECF0" />
<stop offset="1" stopColor="#528DDF" />
</linearGradient>
<linearGradient
id="paint7_linear_651_89341"
x1="16.7647"
y1="3.79245"
x2="13.6015"
y2="9.43625"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#72ECF0" />
<stop offset="1" stopColor="#528DDF" />
</linearGradient>
</defs>
</svg>
);
}
return (
<svg
width={width}
height={height}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19 15.2466V18.7851C19 19.4601 18.2747 20 17.3682 20H14.1175V16.4421H9.89547V20H6.63182C5.72525 20 5 19.4601 5 18.7851V7.21488C5 6.53994 5.72525 6 6.63182 6H17.3682C18.2747 6 19 6.53994 19 7.21488V12.6818"
stroke={stroke}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9 15V11"
stroke={stroke}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9 9V8"
stroke={stroke}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M15 15V11"
stroke={stroke}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M15 9V8"
stroke={stroke}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 8V12"
stroke={stroke}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 14V15"
stroke={stroke}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9.22156 3H14.7665C15.4491 3 16 3.47586 16 4.06552V6H8V4.06552C8 3.47586 8.5509 3 9.23354 3H9.22156Z"
stroke={stroke}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default EnterpriseIcon;
|