9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
export const LogoImage = styled('img')(() => ({
|
|
maxWidth: 200,
|
|
maxHeight: 22,
|
|
width: '100%',
|
|
height: 'auto',
|
|
}));
|