fido-node.github.io/components/atom/Button.tsx

12 lines
226 B
TypeScript
Raw Normal View History

2021-04-28 22:31:42 +03:00
import * as React from 'react';
type Props = {
text: string;
};
export default ({ text }: Props) => (
<button className={'bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded'}>
{text}
</button>
);