From 4838df315931bb883f704ec3e1abe2685f296cdf Mon Sep 17 00:00:00 2001 From: HsiangNianian Date: Sat, 22 Apr 2023 19:52:26 +0800 Subject: 😀 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/components/logos/og/PackLogo.tsx | 72 +++++++++++++++++++++++++++++++++ docs/components/logos/og/RepoLogo.tsx | 70 ++++++++++++++++++++++++++++++++ docs/components/logos/og/TurboLogo.tsx | 54 +++++++++++++++++++++++++ docs/components/logos/og/VercelLogo.tsx | 16 ++++++++ 4 files changed, 212 insertions(+) create mode 100644 docs/components/logos/og/PackLogo.tsx create mode 100644 docs/components/logos/og/RepoLogo.tsx create mode 100644 docs/components/logos/og/TurboLogo.tsx create mode 100644 docs/components/logos/og/VercelLogo.tsx (limited to 'docs/components/logos/og') diff --git a/docs/components/logos/og/PackLogo.tsx b/docs/components/logos/og/PackLogo.tsx new file mode 100644 index 0000000..a2bc95a --- /dev/null +++ b/docs/components/logos/og/PackLogo.tsx @@ -0,0 +1,72 @@ +const PackLogo = (props) => ( + + + + + + + + + + + + + + + + + + + +); + +export default PackLogo; diff --git a/docs/components/logos/og/RepoLogo.tsx b/docs/components/logos/og/RepoLogo.tsx new file mode 100644 index 0000000..f09a1ff --- /dev/null +++ b/docs/components/logos/og/RepoLogo.tsx @@ -0,0 +1,70 @@ +const RepoLogo = (props) => ( + + + + + + + + + + + + + + + + + + + +); + +export default RepoLogo; diff --git a/docs/components/logos/og/TurboLogo.tsx b/docs/components/logos/og/TurboLogo.tsx new file mode 100644 index 0000000..5646ce2 --- /dev/null +++ b/docs/components/logos/og/TurboLogo.tsx @@ -0,0 +1,54 @@ +const TurboLogo = (props) => ( + + + + + + + + + + + + + + + +); + +export default TurboLogo; diff --git a/docs/components/logos/og/VercelLogo.tsx b/docs/components/logos/og/VercelLogo.tsx new file mode 100644 index 0000000..020f271 --- /dev/null +++ b/docs/components/logos/og/VercelLogo.tsx @@ -0,0 +1,16 @@ +const VercelLogo = ({ + fill = "none", + height = 20, +}: { + fill?: string; + height?: number; +}) => ( + + + +); + +export default VercelLogo; -- cgit v1.2.3-70-g09d2