aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/ui/circle.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/instant/src/components/ui/circle.tsx')
-rw-r--r--packages/instant/src/components/ui/circle.tsx26
1 files changed, 0 insertions, 26 deletions
diff --git a/packages/instant/src/components/ui/circle.tsx b/packages/instant/src/components/ui/circle.tsx
deleted file mode 100644
index e4f2c5260..000000000
--- a/packages/instant/src/components/ui/circle.tsx
+++ /dev/null
@@ -1,26 +0,0 @@
-import { ColorOption, styled, Theme, withTheme } from '../../style/theme';
-
-export interface CircleProps {
- diameter: number;
- rawColor?: string;
- color?: ColorOption;
- theme: Theme;
-}
-
-export const Circle = withTheme(
- styled.div<CircleProps>`
- && {
- width: ${props => props.diameter}px;
- height: ${props => props.diameter}px;
- background-color: ${props =>
- props.rawColor ? props.rawColor : props.theme[props.color || ColorOption.white]};
- border-radius: 50%;
- }
- `,
-);
-
-Circle.displayName = 'Circle';
-
-Circle.defaultProps = {
- color: ColorOption.white,
-};