FavoriteToggleProps
Home > @backstage/core-components
> FavoriteToggleProps
Props for the FavoriteToggle() component.
Signature:
export type FavoriteToggleProps = ComponentProps<typeof IconButton> & {
id: string;
title: string;
isFavorite: boolean;
onToggle: (value: boolean) => void;
};