import React from 'react'; import { Box } from './Box'; import { Stack } from './Stack'; import { Text } from './Text'; interface FilePickerProps { label?: string; description?: string; accept?: string; onChange: (event: React.ChangeEvent) => void; disabled?: boolean; } export function FilePicker({ label, description, accept, onChange, disabled }: FilePickerProps) { return ( {label && ( {label} )} {description && ( {description} )} ); }