feishin/src/renderer/components/virtual-table/headers/duration-header.tsx

17 lines
341 B
TypeScript
Raw Normal View History

2022-12-19 15:59:14 -08:00
import type { IHeaderParams } from '@ag-grid-community/core';
import { Icon } from '/@/shared/components/icon/icon';
2022-12-19 15:59:14 -08:00
export interface ICustomHeaderParams extends IHeaderParams {
2023-07-01 19:10:05 -07:00
menuIcon: string;
2022-12-19 15:59:14 -08:00
}
export const DurationHeader = () => {
return (
<Icon
icon="duration"
size="sm"
/>
);
2022-12-19 15:59:14 -08:00
};