UNPKG

lightswind

Version:

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

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