UNPKG

@combine-labs/combine-polaris

Version:

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

7 lines (6 loc) 214 B
import * as React from 'react'; export interface Props { /** The content to display inside the layout. */ children?: React.ReactNode; } export default function FooterHelp({ children }: Props): JSX.Element;