chore: list actions

This commit is contained in:
jialin
2026-01-30 18:48:55 +08:00
parent 9ab8f233a2
commit 358df925e7
3 changed files with 154 additions and 6 deletions
+6 -2
View File
@@ -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