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