// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
import { SVGProps } from 'react';

const SvgSuiLogoTxt = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 28 18"
		{...props}
	>
		<path
			fill="currentColor"
			d="M25.756.726c.386 0 .72.133.996.396.28.264.425.587.425.962 0 .376-.144.7-.425.963-.275.264-.61.397-.996.397a1.42 1.42 0 0 1-1.003-.396l-.001-.001a1.29 1.29 0 0 1-.417-.962c0-.375.141-.698.417-.962v-.001a1.42 1.42 0 0 1 1.004-.396ZM9.025 8.771a6.415 6.415 0 0 1 1.476.79c.481.333.877.76 1.187 1.281.316.53.47 1.176.47 1.93a4.26 4.26 0 0 1-.687 2.368c-.454.708-1.118 1.267-1.984 1.68-.864.413-1.909.617-3.127.617-1.137 0-2.128-.184-2.97-.555-.836-.37-1.5-.89-1.985-1.56-.48-.67-.75-1.447-.813-2.327l-.01-.145H2.81l.01.123c.05.567.239 1.028.563 1.391.336.364.76.638 1.276.82a5.258 5.258 0 0 0 1.701.269c.71 0 1.343-.115 1.9-.342.559-.233.996-.552 1.316-.955.317-.403.476-.873.476-1.416 0-.494-.137-.884-.402-1.181-.275-.31-.64-.564-1.1-.762a11.94 11.94 0 0 0-1.522-.53l-1.93-.551C3.86 9.36 2.87 8.849 2.136 8.178 1.39 7.497 1.02 6.605 1.02 5.514c0-.904.244-1.697.737-2.376.494-.678 1.157-1.203 1.982-1.574.83-.376 1.746-.563 2.773-.563 1.026 0 1.944.184 2.75.556.804.366 1.446.869 1.92 1.512.481.645.735 1.378.761 2.196l.005.139H9.853l-.014-.119a2.269 2.269 0 0 0-1.058-1.71c-.627-.41-1.4-.62-2.33-.62-.679 0-1.267.11-1.767.325-.497.217-.88.512-1.155.883a2.084 2.084 0 0 0-.402 1.26c0 .395.093.728.275 1.003.193.28.439.514.74.704.308.189.632.345.97.47.343.12.659.219.945.295l1.592.428c.414.109.873.258 1.376.448ZM26.778 5.135h-2.075V17.16h2.075V5.135ZM20.422 13.958c.303-.447.459-1.024.459-1.739V5.135h2.076V17.16H20.88v-1.804a4.06 4.06 0 0 1-1.195 1.312c-.61.433-1.374.645-2.283.645-.755 0-1.432-.165-2.026-.5-.598-.34-1.064-.852-1.401-1.527-.339-.682-.504-1.534-.504-2.547V5.135h2.075v7.482c0 .831.232 1.48.683 1.96.457.48 1.039.723 1.755.723.425 0 .861-.11 1.31-.331a2.855 2.855 0 0 0 1.126-1.01l.001-.001Z"
		/>
	</svg>
);
export default SvgSuiLogoTxt;
