@tarojsx/ui
Version:
We reinvents the UI for Taro3+
16 lines (15 loc) • 410 B
TypeScript
import React from 'react';
import { CommonEventFunction } from '@tarojs/components';
import '../style/Tag.scss';
export interface TagProps {
className?: string;
style?: React.CSSProperties;
type?: 'primary';
size?: 'small';
name?: string;
circle?: boolean;
active?: boolean;
disabled?: boolean;
onClick?: CommonEventFunction;
}
export declare const Tag: React.FC<TagProps>;