@livetiles/reach-plugin-types 0.5.0-preview.823 → 0.5.0-preview.825
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 +1 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5426,10 +5426,9 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/IconActionButton" {
|
|
|
5426
5426
|
export const IconActionButton: import("react").ForwardRefExoticComponent<IconActionButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
5427
5427
|
}
|
|
5428
5428
|
declare module "libs/reach/ui/common/src/reach-2/buttons/ContentActionButton" {
|
|
5429
|
-
import { SVGProps } from 'react';
|
|
5430
5429
|
import { IconActionButtonProps } from "libs/reach/ui/common/src/reach-2/buttons/IconActionButton";
|
|
5431
5430
|
export interface ContentActionButtonProps extends IconActionButtonProps {
|
|
5432
|
-
|
|
5431
|
+
isSelected?: boolean;
|
|
5433
5432
|
}
|
|
5434
5433
|
export const ContentActionButton: import("react").ForwardRefExoticComponent<ContentActionButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
5435
5434
|
}
|