mirror of
https://github.com/hazemKrimi/crimson-quirks-ui.git
synced 2026-05-01 18:20:28 +00:00
29 lines
513 B
TypeScript
29 lines
513 B
TypeScript
import styled from 'styled-components';
|
|
|
|
type WrapperProps = {
|
|
color?: 'client' | 'productOwner' | 'developer' | 'admin';
|
|
};
|
|
|
|
export const Wrapper = styled.div<WrapperProps>`
|
|
.carousel-arrow {
|
|
background: none;
|
|
border: none;
|
|
align-self: center;
|
|
cursor: pointer;
|
|
|
|
svg {
|
|
stroke: ${({ theme, color }) => theme.colors[color || 'client'].main};
|
|
}
|
|
}
|
|
|
|
.wireframe {
|
|
img {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
`;
|