aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/ui
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-11-08 13:54:26 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-11-08 13:54:26 +0800
commit1151371e57643662b14c0c940ec558e74a6d1120 (patch)
tree30650b329ab5bd5041373f255cb5e756c46ce606 /packages/instant/src/components/ui
parentecb92a44bc5a4b433f2a673fc77199c7b8a6dc18 (diff)
downloaddexon-sol-tools-1151371e57643662b14c0c940ec558e74a6d1120.tar
dexon-sol-tools-1151371e57643662b14c0c940ec558e74a6d1120.tar.gz
dexon-sol-tools-1151371e57643662b14c0c940ec558e74a6d1120.tar.bz2
dexon-sol-tools-1151371e57643662b14c0c940ec558e74a6d1120.tar.lz
dexon-sol-tools-1151371e57643662b14c0c940ec558e74a6d1120.tar.xz
dexon-sol-tools-1151371e57643662b14c0c940ec558e74a6d1120.tar.zst
dexon-sol-tools-1151371e57643662b14c0c940ec558e74a6d1120.zip
feat: add MetaMask sign, refactor Circle
Diffstat (limited to 'packages/instant/src/components/ui')
-rw-r--r--packages/instant/src/components/ui/circle.tsx19
1 files changed, 11 insertions, 8 deletions
diff --git a/packages/instant/src/components/ui/circle.tsx b/packages/instant/src/components/ui/circle.tsx
index eec2777d2..cb121992f 100644
--- a/packages/instant/src/components/ui/circle.tsx
+++ b/packages/instant/src/components/ui/circle.tsx
@@ -1,22 +1,25 @@
-import { styled } from '../../style/theme';
+import { ColorOption, styled, Theme, withTheme } from '../../style/theme';
export interface CircleProps {
diameter: number;
- fillColor?: string;
+ rawColor?: string;
+ color?: ColorOption;
+ theme: Theme;
}
-export const Circle =
+export const Circle = withTheme(
styled.div <
- CircleProps >
- `
+ CircleProps >
+ `
width: ${props => props.diameter}px;
height: ${props => props.diameter}px;
- background-color: ${props => props.fillColor};
+ background-color: ${props => (props.rawColor ? props.rawColor : props.theme[props.color || ColorOption.white])};
border-radius: 50%;
-`;
+`,
+);
Circle.displayName = 'Circle';
Circle.defaultProps = {
- fillColor: 'white',
+ color: ColorOption.white,
};