import React from 'react'; import { ActionCustom } from '../types/action.bar.type'; export interface CustomActionProps { disabled?: boolean, tooltip: string, onClick: ActionCustom, children?: React.ReactNode, } export const CustomAction: React.FC = () => { return ( <> ) }