mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-16 21:50:35 +02:00
disable single attribute per line
This commit is contained in:
@@ -9,12 +9,7 @@ interface CollapsedSidebarButtonProps extends ActionIconProps {}
|
||||
export const CollapsedSidebarButton = forwardRef<HTMLButtonElement, CollapsedSidebarButtonProps>(
|
||||
({ children, ...props }: CollapsedSidebarButtonProps, ref) => {
|
||||
return (
|
||||
<ActionIcon
|
||||
className={styles.button}
|
||||
ref={ref}
|
||||
variant="subtle"
|
||||
{...props}
|
||||
>
|
||||
<ActionIcon className={styles.button} ref={ref} variant="subtle" {...props}>
|
||||
{children}
|
||||
</ActionIcon>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user