mirror of
https://github.com/NVIDIA/dgx-spark-playbooks.git
synced 2026-04-23 02:23:53 +00:00
28 lines
1.4 KiB
XML
28 lines
1.4 KiB
XML
//
|
|
// SPDX-FileCopyrightText: Copyright (c) 1993-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
export function NvidiaLogo({ className }: { className?: string }) {
|
|
return (
|
|
<svg className={className} viewBox="0 0 1000 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M86.9 132.5H59.4V49.8h27.5v82.7zm614.3-82.7h-27.6v82.7h27.6V49.8zm-307.1 0h-27.5v82.7h27.5V49.8zm-82.7 0h-41.3v82.7h27.5V77.3h13.8c7.6 0 13.8 6.2 13.8 13.8v41.4h27.5V91.1c0-22.8-18.5-41.3-41.3-41.3zm472.9 0h-41.3c-22.8 0-41.3 18.5-41.3 41.3v41.4h27.5V91.1c0-7.6 6.2-13.8 13.8-13.8h13.8v55.2h27.5V49.8zm-196.5 0h-41.3c-22.8 0-41.3 18.5-41.3 41.3v41.4h27.5V91.1c0-7.6 6.2-13.8 13.8-13.8h13.8v55.2h27.5V49.8zm-169 0h-41.3v82.7h27.5V91.1h13.8c7.6 0 13.8 6.2 13.8 13.8v27.6h27.5V91.1c0-22.8-18.5-41.3-41.3-41.3z"
|
|
fill="#76B900"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|
|
|