generated from remotion-dev/template-next-app-dir
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
032bf45
commit d0024ad
Showing
17 changed files
with
322 additions
and
139 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import type { SVGProps } from "react"; | ||
export const PrivateContributionsIcon = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" {...props}> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" {...props}> | ||
<path | ||
fill="var(--pane-text)" | ||
d="M144 144c0-44.2 35.8-80 80-80c31.9 0 59.4 18.6 72.3 45.7c7.6 16 26.7 22.8 42.6 15.2s22.8-26.7 15.2-42.6C331 33.7 281.5 0 224 0C144.5 0 80 64.5 80 144l0 48-16 0c-35.3 0-64 28.7-64 64L0 448c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-192c0-35.3-28.7-64-64-64l-240 0 0-48z" | ||
d="M352 128c0-44.2 35.8-80 80-80s80 35.8 80 80l0 72c0 13.3 10.7 24 24 24s24-10.7 24-24l0-72C560 57.3 502.7 0 432 0S304 57.3 304 128l0 64L64 192c-35.3 0-64 28.7-64 64L0 448c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-192c0-35.3-28.7-64-64-64l-32 0 0-64zM64 240l320 0c8.8 0 16 7.2 16 16l0 192c0 8.8-7.2 16-16 16L64 464c-8.8 0-16-7.2-16-16l0-192c0-8.8 7.2-16 16-16z" | ||
/> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,8 @@ | ||
export const UserIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => ( | ||
<svg | ||
viewBox="0 0 18 18" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{...props} | ||
> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" {...props}> | ||
<path | ||
d="M5.80469 5.07031C5.80469 6.87937 7.27688 8.35156 9.08594 8.35156C10.895 8.35156 12.3672 6.87937 12.3672 5.07031C12.3672 3.26125 10.895 1.78906 9.08594 1.78906C7.27688 1.78906 5.80469 3.26125 5.80469 5.07031ZM14.9193 15.6432H15.6484V14.9141C15.6484 12.1002 13.3581 9.8099 10.5443 9.8099H7.6276C4.81302 9.8099 2.52344 12.1002 2.52344 14.9141V15.6432H14.9193Z" | ||
fill="var(--pane-text)" | ||
d="M304 128a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM49.3 464l349.5 0c-8.9-63.3-63.3-112-129-112l-91.4 0c-65.7 0-120.1 48.7-129 112zM0 482.3C0 383.8 79.8 304 178.3 304l91.4 0C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7L29.7 512C13.3 512 0 498.7 0 482.3z" | ||
/> | ||
</svg> | ||
); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,27 +1,26 @@ | ||
import React from "react"; | ||
import { PANE_TEXT_COLOR } from "../TopLanguages/Pane"; | ||
|
||
export const Issues: React.FC<{ | ||
readonly issues: number; | ||
}> = ({ issues }) => { | ||
return ( | ||
<div | ||
style={{ | ||
position: "absolute", | ||
color: "white", | ||
color: PANE_TEXT_COLOR, | ||
fontFamily: "Mona Sans", | ||
left: 20, | ||
top: 305, | ||
width: 355, | ||
height: 60, | ||
fontSize: 40, | ||
fontSize: 60, | ||
display: "flex", | ||
alignItems: "center", | ||
justifyContent: "center", | ||
fontWeight: "600", | ||
fontWeight: "700", | ||
borderBottom: `1px solid rgb(183, 171, 239)`, | ||
paddingTop: 20, | ||
paddingBottom: 20, | ||
}} | ||
> | ||
<div style={{ marginRight: 10, marginLeft: 10 }}>{issues}</div> | ||
<div style={{ fontSize: 20, fontWeight: "500" }}>Issues closed</div> | ||
<div style={{ marginRight: 20, marginLeft: 10 }}>{issues}</div> | ||
<div style={{ fontSize: 40, fontWeight: "500" }}>Issues closed</div> | ||
</div> | ||
); | ||
}; |
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.