UNPKG

@combine-labs/combine-polaris

Version:

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

15 lines (14 loc) 463 B
import * as React from 'react'; import { ItemPosition } from './components'; export interface Props { /** Content to display on the left */ left?: React.ReactNode; /** Content to display on the right */ right?: React.ReactNode; /** Connected content */ children?: React.ReactNode; } export interface State { focused?: ItemPosition | null; } export default function Connected({ children, left, right }: Props): React.ReactElement<any>;