2
0
Files
bot/apps/builder/components/shared/buttons/PublishButton.tsx

10 lines
166 B
TypeScript
Raw Normal View History

import { Button } from '@chakra-ui/react'
export const PublishButton = () => {
return (
<Button ml={2} colorScheme={'blue'}>
Publish
</Button>
)
}