manifold/web/components/create-question-button.tsx
2022-09-06 16:38:01 -06:00

14 lines
326 B
TypeScript

import React from 'react'
import { Button } from './button'
import { SiteLink } from 'web/components/site-link'
export const CreateQuestionButton = () => {
return (
<SiteLink href="/create">
<Button color="gradient" size="xl" className="mt-4 w-full">
Create a market
</Button>
</SiteLink>
)
}