@dopt/semantic-data-layer-card
v1.2.3
Published
An interface definition for Dopt's card component
Downloads
1,069
Readme
@dopt/semantic-data-layer-card
An interface definition for Dopt's card component.
export interface Card {
id: string;
title: string | null | undefined;
body: RichText | null | undefined;
completeLabel: string | null | undefined;
dismissLabel: string | null | undefined;
active: boolean;
completed: boolean;
dismissed: boolean;
complete: () => void;
dismiss: () => void;
}