Skip to content

Commit

Permalink
refactor: クラス名追加と実装順の変更
Browse files Browse the repository at this point in the history
  • Loading branch information
schktjm committed Oct 15, 2024
1 parent 3206c6b commit b3e6672
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ export default {
},
}

const RadioListCluster = styled(Cluster).attrs({ gap: 1.25 })`
list-style: none;
`

export const Default: StoryFn = () => {
const [openedDialog, setOpenedDialog] = useState<'normal' | 'opened' | null>(null)
const [value, setValue] = React.useState('Apple')
Expand Down Expand Up @@ -138,3 +134,7 @@ Default.parameters = {
},
},
}

const RadioListCluster = styled(Cluster).attrs({ gap: 1.25 })`
list-style: none;
`
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const StepFormDialogContentInner: FC<StepFormDialogContentInnerProps> = (
<Stack gap={0.5} className={actionArea()}>
<Cluster justify="space-between">
{activeStep > 0 && (
<Button onClick={onClickBack}>
<Button onClick={onClickBack} className="smarthr-ui-Dialog-backButton">
{decorators?.backButtonLabel?.(BACK_BUTTON_LABEL) || BACK_BUTTON_LABEL}
</Button>
)}
Expand Down

0 comments on commit b3e6672

Please sign in to comment.