# leadin/11.3.75/scripts/gutenberg/UIComponents/UIImage.ts

HubSpot All-In-One Marketing – Forms, Popups, Live Chat, version 11.3.75. 7 lines.

- Page: https://pluginprobe.com/plugins/leadin/11.3.75/code/scripts/gutenberg/UIComponents/UIImage.ts
- Raw: https://pluginprobe.com/plugins/leadin/11.3.75/raw/scripts/gutenberg/UIComponents/UIImage.ts
- Modified: 2026-09-16T15:19:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/leadin/11.3.75/code/scripts/gutenberg/UIComponents/UIImage.ts#L10-L20`.

```typescript
import { styled } from '@linaria/react';

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

```
