7 lines
193 B
TypeScript
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')};
|
|
`;
|