feishin/src/renderer/components/virtual-table/headers/duration-header.tsx
Jeff c1330d92b2
Migrate to Mantine v8 and Design Changes (#961)
* mantine v8 migration

* various design changes and improvements
2025-06-24 00:04:36 -07:00

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"
/>
);
};