11 lines
342 B
TypeScript
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 };
|