react-cm-ui
Version:
React UI for Healthy Church
24 lines (20 loc) • 552 B
TypeScript
import React from 'react';
export interface DrawerActionBarPropTypes {
/**
* The content of the ActionBar.
*/
children?: React.ReactNode;
/**
* Add additional classes to the TitleBar.
*/
className?: string;
columns: object[],
/**
* Used for DOM testing. https://testing-library.com/docs/queries/bytestid/
*/
dataTestId?: string;
id?: string;
style?: React.CSSProperties;
}
declare const DrawerActionBar: React.ComponentType<DrawerActionBarPropTypes>;
export default DrawerActionBar;