mirror of
https://github.com/hazemKrimi/crimson-quirks-ui.git
synced 2026-05-01 18:20:28 +00:00
15 lines
330 B
TypeScript
15 lines
330 B
TypeScript
import styled from 'styled-components';
|
|
|
|
type WrapperProps = {
|
|
color?: 'client' | 'productOwner' | 'developer' | 'admin';
|
|
};
|
|
|
|
export const Wrapper = styled.div<WrapperProps>`
|
|
padding: 35px 45px 35px 120px;
|
|
|
|
.empty {
|
|
fill: ${({ theme, color }) =>
|
|
color ? theme.colors[color].main : theme.colors.client.main};
|
|
}
|
|
`;
|