Files
crimson-quirks-ui/src/pages/Project/styles.ts
T
2021-06-16 00:42:28 +01:00

19 lines
362 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};
}
.deliverables {
svg path {
stroke: black;
}
}
`;