diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-11-02 08:52:15 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-11-02 08:52:15 +0800 |
commit | ab245fe7dec88c509452dab75fff523c4c4a9461 (patch) | |
tree | fc01a1ee6b3f0bf7851a97dbe0a79c11e1fc53de /packages/instant/src/components/ui/circle.tsx | |
parent | 7de33c5dd9842ef0e83eac64c6e42c69608e4ad0 (diff) | |
download | dexon-0x-contracts-ab245fe7dec88c509452dab75fff523c4c4a9461.tar.gz dexon-0x-contracts-ab245fe7dec88c509452dab75fff523c4c4a9461.tar.zst dexon-0x-contracts-ab245fe7dec88c509452dab75fff523c4c4a9461.zip |
feat: implement basic token selection UI
Diffstat (limited to 'packages/instant/src/components/ui/circle.tsx')
-rw-r--r-- | packages/instant/src/components/ui/circle.tsx | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/instant/src/components/ui/circle.tsx b/packages/instant/src/components/ui/circle.tsx new file mode 100644 index 000000000..bd967d326 --- /dev/null +++ b/packages/instant/src/components/ui/circle.tsx @@ -0,0 +1,24 @@ + +import { styled } from '../../style/theme'; + +export interface CircleProps { + className?: string; + 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', +}; |