jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
23 lines (22 loc) • 662 B
TypeScript
/**
* @file index.tsx
*
* @fileoverview Displays a facet box (to be used on the sidebar on a search page for example).
*/
import React from 'react';
export declare const FacetChildList: import("styled-components").StyledComponent<"div", any, any, never>;
export interface FacetBoxProps {
/**
* The contens to go into the box.
*/
children: React.ReactNode;
/**
* The label for the facets.
*/
label: string;
}
/**
* A facet box contains a list of links inside a box to be used in a
* sidebar region on the job or resume search pages.
*/
export declare const FacetBox: ({ children, label }: FacetBoxProps) => JSX.Element;