Files
feishin/src/shared/components/file-button/file-button.tsx
T
2026-04-02 01:23:09 -07:00

13 lines
349 B
TypeScript

import {
FileButton as MantineFileButton,
FileButtonProps as MantineFileButtonProps,
} from '@mantine/core';
import { CSSProperties } from 'react';
export interface FileButtonProps extends MantineFileButtonProps {
maxWidth?: CSSProperties['maxWidth'];
width?: CSSProperties['width'];
}
export const FileButton = MantineFileButton;