* feat: add remote object integration databases list card Closes #4549 * fix: fixes after rebase
11 lines
267 B
TypeScript
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 };
|