UNPKG

@dabapps/roe

Version:

A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.

22 lines (21 loc) 613 B
import * as React from 'react'; import { OptionalComponentPropAndHTMLAttributes } from '../../types'; export declare type HighlightProps = { /** * Displays the overlay * @default false */ open?: boolean; /** * Disables any interactions with highlighted area * @default false */ disabled?: boolean; /** * Background colour * @default undefined */ backgroundColor?: string | undefined; } & OptionalComponentPropAndHTMLAttributes; declare const _default: React.MemoExoticComponent<(props: HighlightProps) => JSX.Element>; export default _default;