chore: list actions
This commit is contained in:
@@ -2,7 +2,7 @@ import { createFromIconfontCN } from '@ant-design/icons';
|
||||
// import './iconfont/iconfont.js';
|
||||
|
||||
const IconFont = createFromIconfontCN({
|
||||
scriptUrl: '//at.alicdn.com/t/c/font_4613488_9wb9516md1k.js'
|
||||
scriptUrl: '//at.alicdn.com/t/c/font_4613488_q6s2f01tf6l.js'
|
||||
});
|
||||
|
||||
export default IconFont;
|
||||
|
||||
@@ -13,6 +13,9 @@ interface WrapperProps {
|
||||
btnText?: string;
|
||||
disabled?: boolean;
|
||||
onAdd?: () => void;
|
||||
styles?: {
|
||||
wrapper?: React.CSSProperties;
|
||||
};
|
||||
button?: React.ReactNode;
|
||||
}
|
||||
|
||||
@@ -46,11 +49,12 @@ const Wrapper: React.FC<WrapperProps> = ({
|
||||
onAdd,
|
||||
btnText,
|
||||
disabled,
|
||||
button
|
||||
button,
|
||||
styles
|
||||
}) => {
|
||||
const intl = useIntl();
|
||||
return (
|
||||
<Container>
|
||||
<Container style={styles?.wrapper}>
|
||||
{label && (
|
||||
<span className="label">
|
||||
<LabelInfo
|
||||
|
||||
Reference in New Issue
Block a user