Run prettier

This commit is contained in:
Jared Palmer 2023-06-02 15:33:48 -04:00
parent aa83a871dd
commit 417f69e0f1
34 changed files with 530 additions and 523 deletions

View file

@ -1,9 +1,9 @@
import { useId } from "react";
import { useId } from 'react'
export function NextChatLogo(
props: JSX.IntrinsicElements["svg"] & { inverted?: boolean }
props: JSX.IntrinsicElements['svg'] & { inverted?: boolean }
) {
const id = useId();
const id = useId()
return (
<svg
width={17}
@ -22,10 +22,10 @@ export function NextChatLogo(
y2="14.2667"
gradientUnits="userSpaceOnUse"
>
<stop stopColor={props.inverted ? "white" : "black"} />
<stop stopColor={props.inverted ? 'white' : 'black'} />
<stop
offset={1}
stopColor={props.inverted ? "white" : "black"}
stopColor={props.inverted ? 'white' : 'black'}
stopOpacity={0}
/>
</linearGradient>
@ -37,35 +37,35 @@ export function NextChatLogo(
y2="9.50002"
gradientUnits="userSpaceOnUse"
>
<stop stopColor={props.inverted ? "white" : "black"} />
<stop stopColor={props.inverted ? 'white' : 'black'} />
<stop
offset={1}
stopColor={props.inverted ? "white" : "black"}
stopColor={props.inverted ? 'white' : 'black'}
stopOpacity={0}
/>
</linearGradient>
</defs>
<path
d="M1 16L2.58314 11.2506C1.83084 9.74642 1.63835 8.02363 2.04013 6.39052C2.4419 4.75741 3.41171 3.32057 4.776 2.33712C6.1403 1.35367 7.81003 0.887808 9.4864 1.02289C11.1628 1.15798 12.7364 1.8852 13.9256 3.07442C15.1148 4.26363 15.842 5.83723 15.9771 7.5136C16.1122 9.18997 15.6463 10.8597 14.6629 12.224C13.6794 13.5883 12.2426 14.5581 10.6095 14.9599C8.97637 15.3616 7.25358 15.1692 5.74942 14.4169L1 16Z"
fill={props.inverted ? "black" : "white"}
stroke={props.inverted ? "black" : "white"}
fill={props.inverted ? 'black' : 'white'}
stroke={props.inverted ? 'black' : 'white'}
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
<mask
id="mask0_91_2047"
style={{ maskType: "alpha" }}
style={{ maskType: 'alpha' }}
maskUnits="userSpaceOnUse"
x={1}
y={0}
width={16}
height={16}
>
<circle cx={9} cy={8} r={8} fill={props.inverted ? "black" : "white"} />
<circle cx={9} cy={8} r={8} fill={props.inverted ? 'black' : 'white'} />
</mask>
<g mask="url(#mask0_91_2047)">
<circle cx={9} cy={8} r={8} fill={props.inverted ? "black" : "white"} />
<circle cx={9} cy={8} r={8} fill={props.inverted ? 'black' : 'white'} />
<path
d="M14.2896 14.0018L7.146 4.8H5.80005V11.1973H6.87681V6.16743L13.4444 14.6529C13.7407 14.4545 14.0231 14.2369 14.2896 14.0018Z"
fill={`url(#gradient-${id}-1)`}
@ -79,7 +79,7 @@ export function NextChatLogo(
/>
</g>
</svg>
);
)
}
NextChatLogo.displayName = "DevGPT-logo";
NextChatLogo.displayName = 'DevGPT-logo'