summaryrefslogtreecommitdiff
path: root/src/components/Button.tsx
diff options
context:
space:
mode:
authorHaishan <[email protected]>2021-06-05 16:40:07 +0800
committerHaishan <[email protected]>2021-06-05 16:40:07 +0800
commita18efa9723a0b181e7f90206bc0bd13d6c4a30fd (patch)
tree80626c12adf0c6577d6c419a1f03936f23339eee /src/components/Button.tsx
parentfcab7cad4f4cc65a7f30427be35c12a909633e2e (diff)
Update config page style
Diffstat (limited to 'src/components/Button.tsx')
-rw-r--r--src/components/Button.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Button.tsx b/src/components/Button.tsx
index 372038f..97bb141 100644
--- a/src/components/Button.tsx
+++ b/src/components/Button.tsx
@@ -10,7 +10,7 @@ type ButtonInternalProps = {
children?: React.ReactNode;
label?: string;
text?: string;
- start?: React.ReactElement | (() => React.ReactElement);
+ start?: React.ReactNode | (() => React.ReactNode);
};
type ButtonProps = {