Files
medicalalert-web-reloaded/wp/wp-content/plugins/leadin/scripts/gutenberg/UIComponents/UIImage.ts
2024-06-17 14:42:23 -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')};
`;