-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: open the project using vscode (#135)
Signed-off-by: 1111mp <The1111mp@outlook.com>
- Loading branch information
Showing
7 changed files
with
462 additions
and
388 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { forwardRef } from 'react'; | ||
import { cn } from '@/lib/utils'; | ||
|
||
export interface VsCodeLogoProps extends React.SVGAttributes<SVGSVGElement> {} | ||
|
||
export const VsCodeLogo = forwardRef<SVGSVGElement, VsCodeLogoProps>( | ||
({ className, ...props }, ref) => { | ||
return ( | ||
<svg | ||
ref={ref} | ||
className={cn( | ||
'w-[18px] h-[18px] text-primary cursor-pointer', | ||
className | ||
)} | ||
viewBox='0 0 1024 1024' | ||
version='1.1' | ||
xmlns='http://www.w3.org/2000/svg' | ||
p-id='19443' | ||
{...props} | ||
> | ||
<path | ||
d='M746.222933 102.239573l-359.799466 330.820267L185.347413 281.4976 102.2464 329.864533l198.20544 182.132054-198.20544 182.132053 83.101013 48.510293 201.076054-151.558826 359.799466 330.676906 175.527254-85.251413V187.4944z m0 217.57952v384.341334l-255.040853-192.177494z' | ||
fill='currentColor' | ||
p-id='19444' | ||
></path> | ||
</svg> | ||
); | ||
} | ||
); |
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
Oops, something went wrong.