mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
import type { IHeaderParams } from '@ag-grid-community/core';
|
|
|
|
import { Icon } from '/@/shared/components/icon/icon';
|
|
|
|
export interface ICustomHeaderParams extends IHeaderParams {
|
|
menuIcon: string;
|
|
}
|
|
|
|
export const DurationHeader = () => {
|
|
return <Icon icon="duration" size="sm" />;
|
|
};
|