blob: eec2777d23130bc0df9edf511a7dadaa6ddc3f68 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { styled } from '../../style/theme';
export interface CircleProps {
diameter: number;
fillColor?: string;
}
export const Circle =
styled.div <
CircleProps >
`
width: ${props => props.diameter}px;
height: ${props => props.diameter}px;
background-color: ${props => props.fillColor};
border-radius: 50%;
`;
Circle.displayName = 'Circle';
Circle.defaultProps = {
fillColor: 'white',
};
|