-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* loader rework * update icons * fix auto scroll * fix github button
- Loading branch information
1 parent
d4f937c
commit 9468afe
Showing
36 changed files
with
549 additions
and
150 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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon'; | ||
|
||
const AttachmentIcon = (props: SvgIconProps) => { | ||
return ( | ||
<SvgIcon | ||
{...props} | ||
style={{ | ||
strokeLinecap: 'round', | ||
strokeLinejoin: 'round', | ||
strokeWidth: 2, | ||
fill: 'none', | ||
stroke: 'currentColor' | ||
}} | ||
viewBox="0 0 24 24" | ||
> | ||
<path d="m21.44 11.05-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" /> | ||
</SvgIcon> | ||
); | ||
}; | ||
|
||
export default AttachmentIcon; |
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 SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon'; | ||
|
||
const ChevronDownIcon = (props: SvgIconProps) => { | ||
return ( | ||
<SvgIcon> | ||
<svg | ||
{...props} | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
stroke="currentColor" | ||
strokeWidth="2" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
> | ||
<path d="m6 9 6 6 6-6" /> | ||
</svg> | ||
</SvgIcon> | ||
); | ||
}; | ||
|
||
export default ChevronDownIcon; |
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,22 @@ | ||
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon'; | ||
|
||
const CopyIcon = (props: SvgIconProps) => { | ||
return ( | ||
<SvgIcon | ||
{...props} | ||
style={{ | ||
strokeLinecap: 'round', | ||
strokeLinejoin: 'round', | ||
strokeWidth: 2, | ||
fill: 'none', | ||
stroke: 'currentColor' | ||
}} | ||
viewBox="0 0 24 24" | ||
> | ||
<rect width="14" height="14" x="8" y="8" rx="2" ry="2" /> | ||
<path d="M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" /> | ||
</SvgIcon> | ||
); | ||
}; | ||
|
||
export default CopyIcon; |
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 SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon'; | ||
|
||
const MessageBubbleIcon = (props: SvgIconProps) => { | ||
return ( | ||
<SvgIcon> | ||
<svg | ||
{...props} | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
stroke="currentColor" | ||
strokeWidth="2" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
> | ||
<path d="M7.9 20A9 9 0 1 0 4 16.1L2 22Z" />{' '} | ||
</svg> | ||
</SvgIcon> | ||
); | ||
}; | ||
|
||
export default MessageBubbleIcon; |
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,23 @@ | ||
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon'; | ||
|
||
const MicrophoneIcon = (props: SvgIconProps) => { | ||
return ( | ||
<SvgIcon | ||
{...props} | ||
style={{ | ||
strokeLinecap: 'round', | ||
strokeLinejoin: 'round', | ||
strokeWidth: 2, | ||
fill: 'none', | ||
stroke: 'currentColor' | ||
}} | ||
viewBox="0 0 24 24" | ||
> | ||
<path d="M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" /> | ||
<path d="M19 10v2a7 7 0 0 1-14 0v-2" /> | ||
<line x1="12" x2="12" y1="19" y2="22" />{' '} | ||
</SvgIcon> | ||
); | ||
}; | ||
|
||
export default MicrophoneIcon; |
Oops, something went wrong.