@chayns-components/devalue-slider
Version:
A slider to devalue something.
23 lines • 545 B
JavaScript
import styled from 'styled-components';
import { Track } from '../slider/Slider.styles';
export const Container = styled(Track)`
height: ${({
$height
}) => $height}px !important;
background-color: ${({
$color
}) => $color};
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
cursor: pointer;
color: white;
container-type: inline-size;
`;
export const Time = styled.div`
font-size: 6cqw;
font-weight: 700;
color: white;
`;
//# sourceMappingURL=Timer.styles.js.map