mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-04-01 02:43:19 +02:00
26 lines
583 B
TypeScript
26 lines
583 B
TypeScript
import styled from 'styled-components';
|
|
import IconButton from '@mui/material/IconButton';
|
|
import LabelTwoTone from '@mui/icons-material/LabelTwoTone';
|
|
|
|
export const StyledButton = styled(IconButton)`
|
|
margin: 4px;
|
|
`;
|
|
|
|
export const NewLabelContainer = styled.div`
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
`;
|
|
|
|
export const NewLabelColor = styled(LabelTwoTone)`
|
|
margin-right: 12px;
|
|
cursor: pointer;
|
|
`;
|
|
|
|
export const CreateLabel = styled.div`
|
|
padding-top: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
`;
|