mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
12 lines
199 B
TypeScript
12 lines
199 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const ModalBody = styled.div({
|
|
width: '100%',
|
|
display: 'flex',
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
flexDirection: 'column',
|
|
});
|
|
|
|
export default ModalBody;
|