16 lines
332 B
TypeScript
16 lines
332 B
TypeScript
import { dripStitches } from '@/theme';
|
|
import { Flex } from '../layout';
|
|
|
|
const { styled } = dripStitches;
|
|
export abstract class LogoStyles {
|
|
static readonly Container = styled(Flex, {
|
|
cursor: 'pointer',
|
|
flex: 1,
|
|
});
|
|
|
|
static readonly Logo = styled('img', {
|
|
width: '$6',
|
|
height: 'auto',
|
|
});
|
|
}
|