mirror of
https://codeberg.org/uzu/strudel
synced 2026-07-22 13:13:10 -04:00
11 lines
322 B
React
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>
|
|
);
|
|
}
|