스타일 설정

This commit is contained in:
focp212@naver.com
2025-09-19 10:44:31 +09:00
parent f54c654ad6
commit f91ad04506
7 changed files with 67 additions and 30 deletions

View File

@@ -1,13 +1,22 @@
import { InfoItemProps } from '../model/types';
import { PaymentInfoItemType } from '../model/types';
export interface InfoItemProps {
type?: PaymentInfoItemType;
payName?: string;
payImage?: string;
infoLink?: string;
setNoInterestInfoBottomSheetOn?: (noInterestInfoBottomSheetOn: boolean) => void;
};
export const InfoItem = ({
type,
payName,
payImage,
infoLink
infoLink,
setNoInterestInfoBottomSheetOn
}: InfoItemProps) => {
const onClickToShow = () => {
const onClickToOpenBottomSheet = () => {
if(!!infoLink){
}
@@ -27,7 +36,7 @@ export const InfoItem = ({
<button
className="ing-card-link"
type="button"
onClick={ () => onClickToShow() }
onClick={ () => onClickToOpenBottomSheet() }
> &gt;</button>
</li>
</>