# leadin/11.0.52/scripts/elementor/Common/ElementorWrapper.ts

HubSpot All-In-One Marketing – Forms, Popups, Live Chat, version 11.0.52. 26 lines.

- Page: https://pluginprobe.com/plugins/leadin/11.0.52/code/scripts/elementor/Common/ElementorWrapper.ts
- Raw: https://pluginprobe.com/plugins/leadin/11.0.52/raw/scripts/elementor/Common/ElementorWrapper.ts
- Modified: 2024-04-11T14:35:44+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.0.52/code/scripts/elementor/Common/ElementorWrapper.ts#L10-L20`.

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

interface IElementorWrapperProps {
  pluginPath?: string;
}

export default styled.div<IElementorWrapperProps>`
  background-image: ${props =>
    `url(${props.pluginPath}/plugin/assets/images/hubspot.svg)`};
  background-color: #f5f8fa;
  background-repeat: no-repeat;
  background-position: center 25px;
  background-size: 120px;
  color: #33475b;
  font-family: 'Lexend Deca', Helvetica, Arial, sans-serif;
  font-size: 14px;

  padding: ${(props: any) => props.padding || '90px 20% 25px'};

  p {
    font-size: inherit !important;
    line-height: 24px;
    margin: 4px 0;
  }
`;

```
