Skip to content

Commit

Permalink
Merge pull request #16 from academic-relations/15-add-clickable-label
Browse files Browse the repository at this point in the history
feat: add clickable label
  • Loading branch information
sparcscasio authored Oct 7, 2024
2 parents db47e19 + 7c2a470 commit 4762840
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
55 changes: 55 additions & 0 deletions packages/web/src/common/components/CheckboxOption.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import React from "react";
import styled from "styled-components";
import Checkbox from "./Checkbox";
import Typography from "./Typography";

interface CheckboxOptionProps {
optionText: string;
checked: boolean;
onClick: () => void;
}

const CheckboxOptionWrapper = styled.div`
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 12px;
padding-left: 2px;
cursor: pointer;
@media (max-width: ${({ theme }) => theme.responsive.BREAKPOINT.sm}) {
gap: 8px;
}
`;

const ResponsiveTypography = styled(Typography)`
font-size: 16px;
line-height: 20px;
cursor: pointer;
@media (max-width: ${({ theme }) => theme.responsive.BREAKPOINT.sm}) {
font-size: 14px;
}
`;

const CheckboxOption: React.FC<CheckboxOptionProps> = ({
optionText,
checked,
onClick,
}) => (
<CheckboxOptionWrapper onClick={onClick}>
<Checkbox checked={checked} />
<ResponsiveTypography
ff="PRETENDARD"
color="BLACK"
onClick={e => {
e.stopPropagation();
onClick();
}}
>
{optionText}
</ResponsiveTypography>
</CheckboxOptionWrapper>
);

export default CheckboxOption;
5 changes: 5 additions & 0 deletions packages/web/src/common/components/Radio/RadioOption.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ const RadioOptionInner = styled.div`
line-height: 20px;
font-style: normal;
font-weight: ${({ theme }) => theme.fonts.WEIGHT.REGULAR};
cursor: pointer;
& > * {
pointer-events: none;
}
`;

const RadioOption = <T extends string>({
Expand Down

0 comments on commit 4762840

Please sign in to comment.