mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 13:38:51 +00:00
21 lines
320 B
TypeScript
21 lines
320 B
TypeScript
import styled from 'styled-components';
|
|
|
|
const StyledConfirmDelete = styled.div`
|
|
width: 450px;
|
|
|
|
& p {
|
|
font-size: var(--fs-sm);
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
& div {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
|
|
padding-inline: 50px;
|
|
}
|
|
`;
|
|
|
|
export { StyledConfirmDelete };
|