Skip to content

Commit 437eebc

Browse files
committed
ghost reset button
Signed-off-by: shmck <shawn.j.mckay@gmail.com>
1 parent 2d9c525 commit 437eebc

File tree

1 file changed

+8
-3
lines changed
  • web-app/src/containers/Tutorial/components

1 file changed

+8
-3
lines changed

web-app/src/containers/Tutorial/components/Reset.tsx

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import * as React from 'react'
2-
import { Dialog, Message } from '@alifd/next'
3-
import Button from '../../../components/Button'
2+
import { Button, Dialog, Message } from '@alifd/next'
43

54
interface Props {
65
disabled?: boolean
@@ -24,7 +23,13 @@ const Reset = (props: Props) => {
2423

2524
return (
2625
<>
27-
<Button type="secondary" size="medium" onClick={() => setModalState('confirm')} disabled={props.disabled}>
26+
<Button
27+
ghost="dark"
28+
type="secondary"
29+
size="medium"
30+
onClick={() => setModalState('confirm')}
31+
disabled={props.disabled}
32+
>
2833
Reset
2934
</Button>
3035
<Dialog

0 commit comments

Comments
 (0)