UNPKG

@uva-glass/component-library

Version:

React components UvA

12 lines (11 loc) 498 B
import { IconProps } from 'components/Icon'; export type itemType = { iconName: IconProps['name']; itemLabel: string; }; export interface MetaDataBarProps { /** A array of itemType object's to display in the bar. itemType { iconName: IconProps['name']; itemLabel: string; } */ itemData: itemType[]; } /** Represents a component that displays a array of data in a bar. */ export declare const MetaDataBar: ({ itemData }: MetaDataBarProps) => import("react/jsx-runtime").JSX.Element;