Files
strudel/website/src/repl/components/button/action-button.jsx
T
2026-02-13 13:21:50 +01:00

11 lines
330 B
React

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