blob: 26764ec71e61d5c68d4b3d492f6b4bed40712e05 (
plain) (
tree)
|
|
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',
};
|