UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

16 lines (15 loc) 526 B
import React, { Component } from 'react'; import { ConfigContextValue } from '../config-provider/ConfigContext'; export interface CheckableTagProps { prefixCls?: string; className?: string; checked: boolean; onChange?: (checked: boolean) => void; } export default class CheckableTag extends Component<CheckableTagProps> { static get contextType(): React.Context<ConfigContextValue>; static displayName: string; context: ConfigContextValue; handleClick: () => void; render(): JSX.Element; }