Skip to content

Commit

Permalink
formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
noronaoki committed Nov 24, 2023
1 parent a828c91 commit 634903e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 2 additions & 4 deletions src/components/Accordion/styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@ export const Container = styled.div`
border-top: ${({ theme }) => `1px solid ${theme.palette.divider}`};
`;

export const AccordionTitle = styled(Flex) <{
export const AccordionTitle = styled(Flex)<{
expanded: boolean;
disabled?: boolean;
}>`
background-color: ${({ disabled, theme }) =>
disabled
? theme.palette.gray.light
: theme.palette.gray.highlight};
disabled ? theme.palette.gray.light : theme.palette.gray.highlight};
color: ${({ disabled, theme }) =>
disabled ? theme.palette.text.disabled : "auto"};
cursor: ${({ disabled }) => (disabled ? "not-allowed" : "pointer")};
Expand Down
6 changes: 4 additions & 2 deletions src/components/Icon/internal/CheckBoxCircleIcon/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,17 @@ const CheckBoxCircleIcon: React.FunctionComponent<IconProps> = ({
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path
fill={fill}
d="M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM10.886 16.7533L17.956 9.68226L16.542 8.26826L10.886 13.9253L8.05701 11.0963L6.64302 12.5103L10.886 16.7533Z" />
d="M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM10.886 16.7533L17.956 9.68226L16.542 8.26826L10.886 13.9253L8.05701 11.0963L6.64302 12.5103L10.886 16.7533Z"
/>
</svg>
);
case "line":
return (
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path
fill={fill}
d="M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM12 20C14.1217 20 16.1566 19.1571 17.6569 17.6569C19.1571 16.1566 20 14.1217 20 12C20 9.87827 19.1571 7.84344 17.6569 6.34315C16.1566 4.84285 14.1217 4 12 4C9.87827 4 7.84344 4.84285 6.34315 6.34315C4.84285 7.84344 4 9.87827 4 12C4 14.1217 4.84285 16.1566 6.34315 17.6569C7.84344 19.1571 9.87827 20 12 20ZM10.8831 16.7559L6.6401 12.5129L8.0541 11.0989L10.8831 13.9279L16.5391 8.27086L17.9541 9.68486L10.8831 16.7559Z" />
d="M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM12 20C14.1217 20 16.1566 19.1571 17.6569 17.6569C19.1571 16.1566 20 14.1217 20 12C20 9.87827 19.1571 7.84344 17.6569 6.34315C16.1566 4.84285 14.1217 4 12 4C9.87827 4 7.84344 4.84285 6.34315 6.34315C4.84285 7.84344 4 9.87827 4 12C4 14.1217 4.84285 16.1566 6.34315 17.6569C7.84344 19.1571 9.87827 20 12 20ZM10.8831 16.7559L6.6401 12.5129L8.0541 11.0989L10.8831 13.9279L16.5391 8.27086L17.9541 9.68486L10.8831 16.7559Z"
/>
</svg>
);
}
Expand Down

0 comments on commit 634903e

Please sign in to comment.