UNPKG

@combine-labs/combine-polaris

Version:

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

7 lines (6 loc) 218 B
import * as React from 'react'; export interface Props { /** The content to use as a graph label or timestamp */ children?: React.ReactNode; } export default function Caption({ children }: Props): JSX.Element;