import React from 'react'; interface ButtonSettingProps { label: string; // The label to display on the button onClick: () => void; // The function to call when the button is clicked className?: string; // Optional additional classes for styling } const ButtonSetting: React.FC = ({ label, onClick }) => { return (
); }; export default ButtonSetting;