UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 300 B
import React, { CSSProperties } from 'react'; export type Props = { onClick?: () => void; color?: 'gray' | 'white'; className?: string; style?: CSSProperties; }; declare const LabelPin: ({ onClick, color, className, style }: Props) => React.JSX.Element; export { LabelPin };