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

12 lines
267 B
TypeScript
Raw Normal View History

2022-12-19 15:59:14 -08:00
import type { IHeaderParams } from '@ag-grid-community/core';
2022-12-19 15:59:14 -08:00
import { FiClock } from 'react-icons/fi';
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 = () => {
2023-07-01 19:10:05 -07:00
return <FiClock size={15} />;
2022-12-19 15:59:14 -08:00
};