# leadin/11.0.7/scripts/shared/Common/HubspotWrapper.ts

HubSpot All-In-One Marketing – Forms, Popups, Live Chat, version 11.0.7. 27 lines.

- Page: https://pluginprobe.com/plugins/leadin/11.0.7/code/scripts/shared/Common/HubspotWrapper.ts
- Raw: https://pluginprobe.com/plugins/leadin/11.0.7/raw/scripts/shared/Common/HubspotWrapper.ts
- Modified: 2024-03-06T11:43:04+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.7/code/scripts/shared/Common/HubspotWrapper.ts#L10-L20`.

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

interface IHubspotWrapperProps {
  pluginPath: string;
  padding?: string;
}

export default styled.div<IHubspotWrapperProps>`
  background-image: ${props =>
    `url(${props.pluginPath}/public/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;
  }
`;

```
