UNPKG

@useloops/design-system

Version:

The official React based Loops design system

18 lines (15 loc) 455 B
import { FunctionComponent, PropsWithChildren } from 'react'; interface LoopItemProps extends PropsWithChildren { onClick: () => void; id: string; thumbnail: string; title: string; active?: boolean; loading?: boolean; testCount: number | null; draftCount: number | null; cta?: React.ReactNode; } declare const LoopItem: FunctionComponent<LoopItemProps>; export { LoopItem as default }; export type { LoopItemProps };