mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-24 17:51:14 +02:00
Follows up on https://github.com/Unleash/unleash/pull/4853 to add Biome to the frontend as well.  Added a few `biome-ignore` to speed up the process but we may want to check and fix them in the future.
15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
import PermissionButton, {
|
|
IPermissionButtonProps,
|
|
} from 'component/common/PermissionButton/PermissionButton';
|
|
|
|
export const UpdateButton = ({
|
|
children = 'Save',
|
|
...rest
|
|
}: IPermissionButtonProps) => {
|
|
return (
|
|
<PermissionButton type='submit' {...rest}>
|
|
{children}
|
|
</PermissionButton>
|
|
);
|
|
};
|