mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
21 lines
411 B
TypeScript
21 lines
411 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const ModalHeader = styled.h3({
|
|
width: '100%',
|
|
marginBottom: '0.75em',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
});
|
|
|
|
const ModalCloseBtn = styled.button(({ theme }) => ({
|
|
cursor: 'pointer',
|
|
color: theme.colors.primary,
|
|
backgroundColor: 'transparent',
|
|
border: 0,
|
|
padding: 0,
|
|
margin: 0,
|
|
}));
|
|
|
|
export { ModalHeader, ModalCloseBtn };
|