UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

28 lines (27 loc) 710 B
/** * @file index.tsx * * @fileoverview Displays a table header box that can be used to show information about * what is currently selected in a table. */ import React from 'react'; interface TableRowProps { /** * If the header is active or not. Usually means items are selected for the table. * * @default false */ itemsSelected?: number; /** * The headline to display if not active. * * @default false */ headline: string; /** * The actions to display for when items selected. */ actions?: React.ReactNode; } export declare const TableHeadActions: ({ itemsSelected, headline, actions }: TableRowProps) => JSX.Element; export {};