mirror of
https://github.com/hazemKrimi/crimson-quirks-ui.git
synced 2026-05-02 02:30:29 +00:00
13 lines
297 B
TypeScript
13 lines
297 B
TypeScript
import styled from 'styled-components';
|
|
|
|
type WrapperProps = {
|
|
color?: 'client' | 'productOwner' | 'developer' | 'admin';
|
|
};
|
|
|
|
export const Wrapper = styled.div<WrapperProps>`
|
|
.empty {
|
|
fill: ${({ theme, color }) =>
|
|
color ? theme.colors[color].main : theme.colors.client.main};
|
|
}
|
|
`;
|