Current File : /home/digitaw/www/wp-content/plugins/leadin/scripts/gutenberg/UIComponents/UIImage.ts
import { styled } from '@linaria/react';

export default styled.img`
  height: ${props => (props.height ? props.height : 'auto')};
  width: ${props => (props.width ? props.width : 'auto')};
`;