Reface/Logo: DevExpBranding

Logo components for Reface ecosystem
View fullscreen
Source Code
1export const DevExpBranding = component(() => (
2 <Stack direction="vertical" gap="xl">
3 <SectionTitle>DevExp Brand</SectionTitle>
4 <Stack direction="vertical" gap="lg">
5 <LogoGrid>
6 <DevExpLogo />
7 <div class="title">Default DevExp Logo</div>
8 </LogoGrid>
9 <LogoGrid>
10 <DevExpHeroLogo />
11 <div class="title">Hero Version with Animated Corners</div>
12 </LogoGrid>
13 </Stack>
14 </Stack>
15));