lint files

This commit is contained in:
jeffvli
2025-12-13 02:04:00 -08:00
parent a14e5f08ee
commit f9ce076a1a
@@ -19,7 +19,6 @@ export const DefaultPlayButton = forwardRef<HTMLButtonElement, DefaultPlayButton
({ className, variant = 'filled', ...props }, ref) => { ({ className, variant = 'filled', ...props }, ref) => {
return ( return (
<ActionIcon <ActionIcon
ref={ref}
className={clsx(styles.textButton, className, { className={clsx(styles.textButton, className, {
[styles.unthemed]: variant !== 'filled', [styles.unthemed]: variant !== 'filled',
})} })}
@@ -27,6 +26,7 @@ export const DefaultPlayButton = forwardRef<HTMLButtonElement, DefaultPlayButton
iconProps={{ iconProps={{
size: 'xl', size: 'xl',
}} }}
ref={ref}
variant={variant} variant={variant}
{...props} {...props}
/> />