UNPKG

@blockscout/ui-toolkit

Version:

A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects

12 lines (11 loc) 389 B
import { default as React } from 'react'; interface Props { file: File; className?: string; index?: number; onRemove?: (index?: number) => void; isDisabled?: boolean; error?: string; } export declare const FileSnippet: import('@chakra-ui/react').ChakraComponent<({ file, className, index, onRemove, isDisabled, error }: Props) => React.JSX.Element, {}>; export {};