mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 02:13:33 +00:00
16 lines
341 B
TypeScript
16 lines
341 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"
|
|
/>
|
|
);
|
|
};
|