Files
twenty/packages/twenty-front/src/modules/ui/layout/card/components/Card.tsx
2023-12-10 18:10:54 +01:00

11 lines
342 B
TypeScript

import styled from '@emotion/styled';
const StyledCard = styled.div`
background-color: ${({ theme }) => theme.background.secondary};
border: 1px solid ${({ theme }) => theme.border.color.medium};
border-radius: ${({ theme }) => theme.border.radius.sm};
padding: ${({ theme }) => theme.spacing(3)};
`;
export { StyledCard as Card };