UNPKG

@combine-labs/combine-polaris

Version:

Combine Lab's product component library. Forked from Shopify's Polaris.

7 lines (6 loc) 202 B
/// <reference types="react" /> export interface Props { /** The content to display inside the key */ children?: string; } export default function KeyboardKey({ children }: Props): JSX.Element;