UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

10 lines (9 loc) 283 B
import React from "react"; import { FileItem } from "./Item.types"; interface ItemIconProps { isLoading?: boolean; file: FileItem; showError: boolean; } declare function ItemIcon({ isLoading, file, showError }: ItemIconProps): React.JSX.Element; export default ItemIcon;