Files
2024-09-25 09:25:31 -04:00

7 lines
193 B
TypeScript

import { styled } from '@linaria/react';
export default styled.img`
height: ${props => (props.height ? props.height : 'auto')};
width: ${props => (props.width ? props.width : 'auto')};
`;