import React from 'react'

const DarkBt = () => {
    return (
        <button className='font-bold bg-darklw text-white hover:bg-darklw-2  p-4  px-12 rounded-full  cursor-pointer'>
            Button
        </button>
    )
}

export default DarkBt;