manifold/web/components/create-question-button.tsx

14 lines
326 B
TypeScript
Raw Normal View History

2022-08-28 20:56:35 +00:00
import React from 'react'
import { Button } from './button'
2022-09-06 22:38:01 +00:00
import { SiteLink } from 'web/components/site-link'
2022-07-19 23:15:55 +00:00
export const CreateQuestionButton = () => {
return (
2022-09-06 22:38:01 +00:00
<SiteLink href="/create">
<Button color="gradient" size="xl" className="mt-4 w-full">
Create a market
</Button>
2022-09-06 22:38:01 +00:00
</SiteLink>
)
}