UNPKG

@steambrew/client

Version:
15 lines (11 loc) 461 B
import { FC, ReactNode } from 'react'; import { Export, findModuleExport } from '../webpack'; export interface ControlsListProps { alignItems?: 'left' | 'right' | 'center'; spacing?: 'standard' | 'extra'; children?: ReactNode; } export const ControlsList: FC<ControlsListProps> = findModuleExport( (e: Export) => e?.toString && e.toString().includes('().ControlsListChild') && e.toString().includes('().ControlsListOuterPanel'), );