@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 394 B
TypeScript
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 };