2024-05-27 13:19:11 -04:00
|
|
|
import { FC, ReactNode } from 'react';
|
2024-05-12 15:45:26 -04:00
|
|
|
|
2024-05-12 15:48:13 -04:00
|
|
|
import { Export, findModuleExport } from '../webpack';
|
|
|
|
|
|
2024-05-12 15:45:26 -04:00
|
|
|
export interface ControlsListProps {
|
|
|
|
|
alignItems?: 'left' | 'right' | 'center';
|
|
|
|
|
spacing?: 'standard' | 'extra';
|
2024-05-27 13:19:11 -04:00
|
|
|
children?: ReactNode;
|
2024-05-12 15:45:26 -04:00
|
|
|
}
|
|
|
|
|
|
2024-05-12 15:48:13 -04:00
|
|
|
export const ControlsList: FC<ControlsListProps> = findModuleExport(
|
|
|
|
|
(e: Export) =>
|
|
|
|
|
e?.toString && e.toString().includes('().ControlsListChild') && e.toString().includes('().ControlsListOuterPanel'),
|
|
|
|
|
);
|