-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #420 from kure-kosen/react/change-radio-card-shown
React/change radio card shown
- Loading branch information
Showing
6 changed files
with
63 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React, { FC } from "react"; | ||
import styled from "styled-components"; | ||
|
||
import ChkButtonBase from "@/components/atoms/Buttons/ChkButtonBase"; | ||
|
||
interface Props { | ||
onClick?: (e: any) => void; | ||
} | ||
|
||
export const MoreButtonText: FC<Props> = ({ onClick }) => { | ||
return ( | ||
<MoreButtonWrapper onClick={onClick}> | ||
<ChkButtonBase text="more" /> | ||
</MoreButtonWrapper> | ||
); | ||
}; | ||
|
||
const MoreButtonWrapper = styled.div` | ||
margin: 0 auto; | ||
width: 150px; | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters