# leadin/11.3.61/scripts/shared/UIComponents/UIContainer.ts

HubSpot All-In-One Marketing – Forms, Popups, Live Chat, version 11.3.61. 10 lines.

- Page: https://pluginprobe.com/plugins/leadin/11.3.61/code/scripts/shared/UIComponents/UIContainer.ts
- Raw: https://pluginprobe.com/plugins/leadin/11.3.61/raw/scripts/shared/UIComponents/UIContainer.ts
- Modified: 2026-07-08T14:59:02+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.61/code/scripts/shared/UIComponents/UIContainer.ts#L10-L20`.

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

interface IUIContainerProps {
  textAlign?: string;
}

export default styled.div<IUIContainerProps>`
  text-align: ${props => (props.textAlign ? props.textAlign : 'inherit')};
`;

```
