import React, { useState } from 'react'; import Sidebar from '../../partials/Sidebar'; import Header from '../../partials/Header'; function ButtonPage() { const [sidebarOpen, setSidebarOpen] = useState(false); return (
{/* Sidebar */} {/* Content area */}
{/* Site header */}
{/* Page header */}

Button ✨

{/* Components */}
{/* Appearances */}

Appearances

{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* States */}

States

{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Sizes */}

Sizes

{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Buttons with an Icon */}

Buttons with an Icon

{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Icon Buttons */}

Icon Buttons

{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Start */} {/* End */}
{/* Button Groups */}

Button Groups

{/* Start */}
{/* End */}
{/* Start */}
{/* End */}
); } export default ButtonPage;