@yamlresume/playground
    Preparing search index...

    Interface ToolbarButtonProps

    Props for the ToolbarButton component.

    interface ToolbarButtonProps {
        children: ReactNode;
        onClick: () => void;
        title: string;
    }
    Index
    children: ReactNode

    The content to be rendered inside the button, typically an icon.

    onClick: () => void

    Callback triggered when the button is clicked.

    title: string

    The tooltip text displayed when hovering over the button.