File "NavigationButton.jsx"
Full Path: /home/fresvfqn/waterdamagerestorationandrepairsmithtown.com/wp-content/plugins/extendify/src/Launch/components/NavigationButton.jsx
File size: 348 bytes
MIME-type: text/x-java
Charset: utf-8
import classnames from 'classnames';
export const NavigationButton = (props) => {
return (
<button
{...props}
className={classnames(
'button-focus flex items-center rounded border px-6 py-3 leading-6',
{
'opacity-50': props.disabled,
},
props.className,
)}
type="button">
{props.children}
</button>
);
};