UNPKG

pxt-core

Version:

Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors

10 lines (9 loc) 281 B
import { ContainerProps } from "../util"; export interface CardProps extends ContainerProps { onClick?: () => void; tabIndex?: number; ariaLabelledBy?: string; label?: string; labelClass?: string; } export declare const Card: (props: CardProps) => JSX.Element;