Files
strudel/website/src/repl/components/button/action-button.jsx
T
Jade (Rose) Rowland e7e80bfd83 working
2025-09-07 22:21:03 -04:00

11 lines
322 B
React

import cx from '@src/cx.mjs';
export function ActionButton({ children, label, labelIsHidden, className, ...buttonProps }) {
return (
<button className={cx('hover:opacity-50 text-nowrap w-fit', className)} title={label} {...buttonProps}>
{labelIsHidden !== true && label}
{children}
</button>
);
}