Skip to content

Commit d633f1c

Browse files
committedFeb 22, 2022
💄 Added TypeScript icon
1 parent 0a1e14b commit d633f1c

File tree

3 files changed

+7
-17
lines changed

3 files changed

+7
-17
lines changed
 

‎components/Setting.tsx

+5-16
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
import { Stack, Text, useColorModeValue } from '@chakra-ui/react';
1+
import { Image, Stack, Text, useColorModeValue } from '@chakra-ui/react';
22
import { PropsWithChildren } from 'react';
33

44
interface Props {
55
title: string;
6-
description?: string;
6+
img?: string;
77
}
88

99
export default function Setting({
1010
title,
11-
description,
11+
img,
1212
children,
1313
}: PropsWithChildren<Props>) {
1414
return (
@@ -20,23 +20,12 @@ export default function Setting({
2020
direction='row'
2121
justify='space-between'
2222
>
23-
<Stack direction='row' alignItems='center'>
23+
<Stack direction='row' alignItems='center' gap={2}>
24+
{img && <Image src={img} alt='' w='10' />}
2425
<Text fontWeight='semibold' fontSize={'2xl'}>
2526
{title}
2627
</Text>
2728
</Stack>
28-
29-
{/* {description && (
30-
<Stack
31-
direction={{ base: 'column', md: 'row' }}
32-
justifyContent='space-between'
33-
alignItems={'center'}
34-
>
35-
<Text fontSize={{ base: 'sm' }} textAlign={'left'} maxW={'4xl'}>
36-
{description}
37-
</Text>
38-
</Stack>
39-
)} */}
4029
{children}
4130
</Stack>
4231
);

‎pages/formatter/js.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const JS: NextPage = () => {
4747
<>
4848
<Layout title={path.title} description={path.description}>
4949
<Header title={path.title} imageSrc={path.image} />
50-
<Setting title='Format TypeScript'>
50+
<Setting title='Format TypeScript' img='/icons/ts.svg'>
5151
<Switch
5252
size='lg'
5353
isChecked={isTS}

‎public/icons/ts.svg

+1
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.