Files
twenty/packages/twenty-front/src/modules/settings/components/SettingsListSkeletonCard.tsx
Thaïs c3cc0f651c feat: add remote object integration databases list card (#4621)
* feat: add remote object integration databases list card

Closes #4549

* fix: fixes after rebase
2024-03-27 18:59:40 +01:00

11 lines
267 B
TypeScript

import styled from '@emotion/styled';
import { Card } from '@/ui/layout/card/components/Card';
const StyledCard = styled(Card)`
background-color: ${({ theme }) => theme.background.secondary};
height: 40px;
`;
export { StyledCard as SettingsListSkeletonCard };