UNPKG

lightswind

Version:

A modern frontend library with pre-built Tailwind CSS components for building responsive and interactive user interfaces.

12 lines (10 loc) 324 B
import React from 'react' const BorderedPrimaryBt = () => { return ( <button className='font-bold border border-primarylw text-primarylw hover:bg-primarylw-2 hover:text-white p-4 px-12 rounded-md cursor-pointer'> Button </button> ) } export default BorderedPrimaryBt