diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-11-08 13:54:26 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-11-08 13:54:26 +0800 |
commit | 1151371e57643662b14c0c940ec558e74a6d1120 (patch) | |
tree | 30650b329ab5bd5041373f255cb5e756c46ce606 /packages/instant/src/components/ui | |
parent | ecb92a44bc5a4b433f2a673fc77199c7b8a6dc18 (diff) | |
download | dexon-0x-contracts-1151371e57643662b14c0c940ec558e74a6d1120.tar.gz dexon-0x-contracts-1151371e57643662b14c0c940ec558e74a6d1120.tar.zst dexon-0x-contracts-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.tsx | 19 |
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, }; |