lightswind
Version:
A modern frontend library with pre-built Tailwind CSS components for building responsive and interactive user interfaces.
21 lines (18 loc) • 567 B
JSX
import React from 'react'
const PrimaryDarkbtns = () => {
return (
<div>
<div class="flex gap-2 flex-wrap items-center justify-center ">
<button className='font-bold bg-primarylw text-white hover:bg-primarylw-2
p-4 px-12 rounded-full cursor-pointer'>
Button
</button>
<button
className='font-bold bg-darklw text-white hover:bg-darklw-2 p-4 px-12 rounded-full cursor-pointer'>
Button
</button>
</div>
</div>
)
}
export default PrimaryDarkbtns