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)

22 lines (21 loc) 585 B
/** * @file index.tsx * * @fileoverview Renders a single facet link in the form of a span. */ import * as React from 'react'; export interface FacetLinkProps extends React.ButtonHTMLAttributes<HTMLLinkElement> { /** * The content for the facet link. */ children: React.ReactNode | string; /** * If the facet item is selected. */ selected?: boolean; } /** * Styles a facet link as used in the facet listing. */ export declare const FacetLinkItem: ({ children, selected, ...props }: FacetLinkProps) => JSX.Element; export default FacetLinkItem;