Rename "CustomIconButton" to "CustomButton"

This commit is contained in:
schroda
2025-02-08 16:03:37 +01:00
parent cae52fd782
commit f633059083
5 changed files with 20 additions and 16 deletions

View File

@@ -10,7 +10,7 @@ import Button, { ButtonProps } from '@mui/material/Button';
import Stack from '@mui/material/Stack';
import { ForwardedRef, forwardRef } from 'react';
export const CustomIconButton = forwardRef(
export const CustomButton = forwardRef(
<C extends React.ElementType>(
{ children, ...props }: ButtonProps<C, { component?: C }>,
ref: ForwardedRef<HTMLButtonElement | null>,