PluginProbe
HubSpot All-In-One Marketing – Forms, Popups, Live Chat / 11.3.65
HubSpot All-In-One Marketing – Forms, Popups, Live Chat v11.3.65
11.3.75 11.3.73 11.3.71 11.3.70 11.3.69 11.3.64 11.3.65 11.3.62 11.3.61 11.3.56 11.3.58 11.0.31 11.0.52 11.0.54 11.0.56 11.0.58 11.0.7 11.1.10 11.1.11 11.1.13 11.1.14 11.1.15 11.1.2 11.1.20 11.1.21 All 73 releases
leadin / scripts / shared / UIComponents / UIButton.ts

UIButton.ts in HubSpot All-In-One Marketing – Forms, Popups, Live Chat 11.3.65, at scripts/shared/UIComponents/UIButton.ts

20 lines 547 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { styled } from '@linaria/react';
2 import { HEFFALUMP, LORAX, OLAF } from './colors';
3
4 interface IButtonProps {
5 use?: string;
6 }
7
8 export default styled.button<IButtonProps>`
9 background-color:${props => (props.use === 'tertiary' ? HEFFALUMP : LORAX)};
10 border: 3px solid ${props => (props.use === 'tertiary' ? HEFFALUMP : LORAX)};
11 color: ${OLAF}
12 border-radius: 3px;
13 font-size: 14px;
14 line-height: 14px;
15 padding: 12px 24px;
16 font-family: 'Lexend Deca', Helvetica, Arial, sans-serif;
17 font-weight: 500;
18 white-space: nowrap;
19 `;
20