CloseIcon.tsx
2 years ago
Container.tsx
2 years ago
Content.tsx
2 years ago
Header.tsx
2 years ago
HeaderIcon.tsx
2 years ago
index.ts
2 years ago
Container.tsx
23 lines
| 1 | const Container = ({children}) => { |
| 2 | return ( |
| 3 | <div |
| 4 | style={{ |
| 5 | position: 'relative', |
| 6 | border: '1px solid var(--givewp-gray-30)', |
| 7 | boxShadow: '0px 2px 4px rgba(221, 221, 221, 0.25)', |
| 8 | borderRadius: '5px', |
| 9 | backgroundColor: 'white', |
| 10 | padding: '1rem', |
| 11 | width: '324px', |
| 12 | display: 'flex', |
| 13 | gap: '12px', |
| 14 | flexDirection: 'column', |
| 15 | }} |
| 16 | > |
| 17 | {children} |
| 18 | </div> |
| 19 | ); |
| 20 | } |
| 21 | |
| 22 | export default Container; |
| 23 |