????
| Current Path : /home/arabianr/public_html/wp-content/plugins/extendify/src/Launch/components/ |
| Current File : /home/arabianr/public_html/wp-content/plugins/extendify/src/Launch/components/NavigationButton.jsx |
import classnames from 'classnames';
export const NavigationButton = (props) => {
return (
<button
{...props}
className={classnames(
'button-focus flex items-center rounded-sm border px-6 py-3 leading-6',
{
'opacity-50': props.disabled,
},
props.className,
)}
type="button"
>
{props.children}
</button>
);
};