@livetiles/reach-plugin-types 0.5.0-preview.855 → 0.5.0-preview.857
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +4 -5
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5477,14 +5477,13 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/BaseIconicButton" {
|
|
|
5477
5477
|
export const BaseIconicButton: import("react").ForwardRefExoticComponent<BaseIconicButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
5478
5478
|
}
|
|
5479
5479
|
declare module "libs/reach/ui/common/src/reach-2/buttons/IconicButtons" {
|
|
5480
|
-
import { FC } from 'react';
|
|
5481
5480
|
import { BaseIconicButtonProps } from "libs/reach/ui/common/src/reach-2/buttons/BaseIconicButton";
|
|
5482
|
-
export const PrimaryIconicButton:
|
|
5481
|
+
export const PrimaryIconicButton: import("react").ForwardRefExoticComponent<BaseIconicButtonProps & {
|
|
5483
5482
|
isSelected?: boolean;
|
|
5484
|
-
}
|
|
5485
|
-
export const SecondaryIconicButton:
|
|
5483
|
+
} & import("react").RefAttributes<HTMLButtonElement>>;
|
|
5484
|
+
export const SecondaryIconicButton: import("react").ForwardRefExoticComponent<BaseIconicButtonProps & {
|
|
5486
5485
|
isSelected?: boolean;
|
|
5487
|
-
}
|
|
5486
|
+
} & import("react").RefAttributes<HTMLButtonElement>>;
|
|
5488
5487
|
}
|
|
5489
5488
|
declare module "libs/reach/ui/common/src/reach-2/buttons/FloatingActionButton" {
|
|
5490
5489
|
import { FC } from 'react';
|