Button

Displays a button or a component that looks like a button.

import { Button } from '@iftakhar/ui';
<Button type='button' className='bg-gray-500 text-white px-3 py-2 rounded'>
  Button
</Button>

You can use the Button helper to create a link that looks like a button.

import { Button } from '@iftakhar/ui';
<Button type='link' href={'/'} className='bg-gray-500 text-white px-3 py-2 rounded'>
  Button
</Button>