mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-28 18:38:17 +00:00
17 lines
473 B
TypeScript
17 lines
473 B
TypeScript
import { borders, colors, radius } from '@components';
|
|
import styled from 'styled-components';
|
|
|
|
const ModuleContainer = styled.div<{ $height: string }>`
|
|
background: ${colors.white};
|
|
border: ${borders['1px']} ${colors.gray[100]};
|
|
border-radius: ${radius.lg};
|
|
flex: 1;
|
|
|
|
height: ${(props) => props.$height};
|
|
box-shadow:
|
|
0px 2px 18px 0px rgba(17, 7, 69, 0.01),
|
|
0px 4px 12px 0px rgba(17, 7, 69, 0.03);
|
|
`;
|
|
|
|
export default ModuleContainer;
|