Update eslint to 8.27.0
This commit is contained in:
parent
c8fb43a846
commit
98ef4c627a
499 changed files with 8995 additions and 8494 deletions
|
@ -17,19 +17,24 @@ export type Props = OwnProps & ButtonHTMLAttributes<HTMLButtonElement>;
|
|||
export const StickerPackInstallButton = React.forwardRef<
|
||||
HTMLButtonElement,
|
||||
Props
|
||||
>(({ i18n, installed, blue, ...props }: Props, ref) => (
|
||||
<button
|
||||
type="button"
|
||||
ref={ref}
|
||||
className={classNames({
|
||||
'module-sticker-manager__install-button': true,
|
||||
'module-sticker-manager__install-button--blue': blue,
|
||||
})}
|
||||
aria-label={i18n('stickers--StickerManager--Install')}
|
||||
{...props}
|
||||
>
|
||||
{installed
|
||||
? i18n('stickers--StickerManager--Uninstall')
|
||||
: i18n('stickers--StickerManager--Install')}
|
||||
</button>
|
||||
));
|
||||
>(function StickerPackInstallButtonInner(
|
||||
{ i18n, installed, blue, ...props }: Props,
|
||||
ref
|
||||
) {
|
||||
return (
|
||||
<button
|
||||
type="button"
|
||||
ref={ref}
|
||||
className={classNames({
|
||||
'module-sticker-manager__install-button': true,
|
||||
'module-sticker-manager__install-button--blue': blue,
|
||||
})}
|
||||
aria-label={i18n('stickers--StickerManager--Install')}
|
||||
{...props}
|
||||
>
|
||||
{installed
|
||||
? i18n('stickers--StickerManager--Uninstall')
|
||||
: i18n('stickers--StickerManager--Install')}
|
||||
</button>
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue