mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 04:50:12 +02:00
13 lines
349 B
TypeScript
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;
|