Files
AFFiNE-Mirror/packages/component/src/ui/modal/ModalWrapper.tsx
T

20 lines
471 B
TypeScript

import { CSSProperties } from 'react';
import { styled } from '../../styles';
export const ModalWrapper = styled.div<{
width?: CSSProperties['width'];
height?: CSSProperties['height'];
minHeight?: CSSProperties['minHeight'];
}>(({ theme, width, height, minHeight }) => {
return {
width,
height,
minHeight,
backgroundColor: theme.colors.popoverBackground,
borderRadius: '24px',
position: 'relative',
};
});
export default ModalWrapper;