mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 02:43:33 +00:00
11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
|
|
import type { IHeaderParams } from '@ag-grid-community/core';
|
||
|
|
import { FiClock } from 'react-icons/fi';
|
||
|
|
|
||
|
|
export interface ICustomHeaderParams extends IHeaderParams {
|
||
|
|
menuIcon: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export const DurationHeader = () => {
|
||
|
|
return <FiClock size={15} />;
|
||
|
|
};
|