UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 394 B
import React, { CSSProperties, ReactNode } from 'react'; export type Props = { label: ReactNode; rightLabel?: ReactNode; onClick?: () => unknown; color?: 'gray' | 'white'; className?: string; style?: CSSProperties; }; declare const LabelSortPin: ({ label, rightLabel, onClick, color, className, style, }: Props) => React.JSX.Element; export { LabelSortPin };