diff options
author | Fred Carlsen <fred@sjelfull.no> | 2018-11-29 22:34:26 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-11-29 22:34:26 +0800 |
commit | a21bca7cf4771d04879036f3406f38276af93e3a (patch) | |
tree | fa74469c4d74428faf1dc248d9c317a2e683216a /packages/website/ts/@next/pages | |
parent | 200da7d22cda1a853105d6114848f7e09d18370f (diff) | |
download | dexon-sol-tools-a21bca7cf4771d04879036f3406f38276af93e3a.tar.gz dexon-sol-tools-a21bca7cf4771d04879036f3406f38276af93e3a.tar.zst dexon-sol-tools-a21bca7cf4771d04879036f3406f38276af93e3a.zip |
Cleanup button component
Diffstat (limited to 'packages/website/ts/@next/pages')
-rw-r--r-- | packages/website/ts/@next/pages/landing.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/website/ts/@next/pages/landing.tsx b/packages/website/ts/@next/pages/landing.tsx index ad0639fc7..fff9e630d 100644 --- a/packages/website/ts/@next/pages/landing.tsx +++ b/packages/website/ts/@next/pages/landing.tsx @@ -1,7 +1,8 @@ import * as React from 'react'; import styled from 'styled-components'; -import { colors } from 'ts/style/colors' +import { colors } from 'ts/style/colors'; + import { Button, ButtonTransparent } from 'ts/@next/components/button'; import { Column, Section, Wrap, WrapCentered } from 'ts/@next/components/layout'; import { SiteWrap } from 'ts/@next/components/siteWrap'; @@ -10,7 +11,6 @@ import { Heading, Intro, Text } from 'ts/@next/components/text'; import logoOutlined from 'ts/@next/icons/illustrations/logo-outlined.svg'; import protocol from 'ts/@next/icons/illustrations/protocol.svg'; - const Icon = styled.div` flex-shrink: 0; `; @@ -23,8 +23,8 @@ export const NextLanding = () => ( <Heading>Powering Decentralized Exchange</Heading> <Intro>0x is the best solution for adding exchange functionality to your business.</Intro> <div> - <Button text="Get Started" inline={true} /> - <ButtonTransparent text="Learn More" inline={true} /> + <Button inline={true}>Get Started</Button> + <ButtonTransparent inline={true}>Learn More</ButtonTransparent> </div> </Column> |