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