2023-06-07 16:17:59 +04:00
|
|
|
'use client'
|
|
|
|
|
|
|
|
|
|
import * as React from 'react'
|
2023-06-11 00:23:23 +04:00
|
|
|
|
2023-06-07 16:17:59 +04:00
|
|
|
import { cn } from '@/lib/utils'
|
|
|
|
|
|
|
|
|
|
export function NextChat({
|
|
|
|
|
className,
|
|
|
|
|
inverted,
|
|
|
|
|
...props
|
|
|
|
|
}: React.ComponentProps<'svg'> & { inverted?: boolean }) {
|
|
|
|
|
const id = React.useId()
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<svg
|
|
|
|
|
viewBox="0 0 17 17"
|
|
|
|
|
fill="none"
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
className={cn('w-4 h-4', className)}
|
|
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
<defs>
|
|
|
|
|
<linearGradient
|
|
|
|
|
id={`gradient-${id}-1`}
|
|
|
|
|
x1="10.6889"
|
|
|
|
|
y1="10.3556"
|
|
|
|
|
x2="13.8445"
|
|
|
|
|
y2="14.2667"
|
|
|
|
|
gradientUnits="userSpaceOnUse"
|
|
|
|
|
>
|
|
|
|
|
<stop stopColor={inverted ? 'white' : 'black'} />
|
|
|
|
|
<stop
|
|
|
|
|
offset={1}
|
|
|
|
|
stopColor={inverted ? 'white' : 'black'}
|
|
|
|
|
stopOpacity={0}
|
|
|
|
|
/>
|
|
|
|
|
</linearGradient>
|
|
|
|
|
<linearGradient
|
|
|
|
|
id={`gradient-${id}-2`}
|
|
|
|
|
x1="11.7555"
|
|
|
|
|
y1="4.8"
|
|
|
|
|
x2="11.7376"
|
|
|
|
|
y2="9.50002"
|
|
|
|
|
gradientUnits="userSpaceOnUse"
|
|
|
|
|
>
|
|
|
|
|
<stop stopColor={inverted ? 'white' : 'black'} />
|
|
|
|
|
<stop
|
|
|
|
|
offset={1}
|
|
|
|
|
stopColor={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={inverted ? 'black' : 'white'}
|
|
|
|
|
stroke={inverted ? 'black' : 'white'}
|
|
|
|
|
strokeWidth={2}
|
|
|
|
|
strokeLinecap="round"
|
|
|
|
|
strokeLinejoin="round"
|
|
|
|
|
/>
|
|
|
|
|
<mask
|
|
|
|
|
id="mask0_91_2047"
|
|
|
|
|
style={{ maskType: 'alpha' }}
|
|
|
|
|
maskUnits="userSpaceOnUse"
|
|
|
|
|
x={1}
|
|
|
|
|
y={0}
|
|
|
|
|
width={16}
|
|
|
|
|
height={16}
|
|
|
|
|
>
|
|
|
|
|
<circle cx={9} cy={8} r={8} fill={inverted ? 'black' : 'white'} />
|
|
|
|
|
</mask>
|
|
|
|
|
<g mask="url(#mask0_91_2047)">
|
|
|
|
|
<circle cx={9} cy={8} r={8} fill={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)`}
|
|
|
|
|
/>
|
|
|
|
|
<rect
|
|
|
|
|
x="11.2222"
|
|
|
|
|
y="4.8"
|
|
|
|
|
width="1.06667"
|
|
|
|
|
height="6.4"
|
|
|
|
|
fill={`url(#gradient-${id}-2)`}
|
|
|
|
|
/>
|
|
|
|
|
</g>
|
|
|
|
|
</svg>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function OpenAI({ className, ...props }: React.ComponentProps<'svg'>) {
|
|
|
|
|
return (
|
|
|
|
|
<svg
|
|
|
|
|
fill="currentColor"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
role="img"
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
className={cn('w-4 h-4', className)}
|
|
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
<title>OpenAI icon</title>
|
|
|
|
|
<path d="M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z" />
|
|
|
|
|
</svg>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function Vercel({ className, ...props }: React.ComponentProps<'svg'>) {
|
|
|
|
|
return (
|
|
|
|
|
<svg
|
|
|
|
|
aria-label="Vercel logomark"
|
|
|
|
|
role="img"
|
|
|
|
|
viewBox="0 0 74 64"
|
|
|
|
|
className={cn('w-4 h-4', className)}
|
|
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
d="M37.5896 0.25L74.5396 64.25H0.639648L37.5896 0.25Z"
|
|
|
|
|
fill="currentColor"
|
|
|
|
|
></path>
|
|
|
|
|
</svg>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function GitHub({ className, ...props }: React.ComponentProps<'svg'>) {
|
|
|
|
|
return (
|
|
|
|
|
<svg
|
|
|
|
|
role="img"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
fill="currentColor"
|
|
|
|
|
className={cn('w-4 h-4', className)}
|
|
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
<title>GitHub</title>
|
|
|
|
|
<path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" />
|
|
|
|
|
</svg>
|
|
|
|
|
)
|
|
|
|
|
}
|
2023-06-11 00:23:23 +04:00
|
|
|
|
|
|
|
|
export function Separator({
|
|
|
|
|
className,
|
|
|
|
|
...props
|
|
|
|
|
}: React.ComponentProps<'svg'>) {
|
|
|
|
|
return (
|
|
|
|
|
<svg
|
|
|
|
|
fill="none"
|
|
|
|
|
shapeRendering="geometricPrecision"
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
strokeLinecap="round"
|
|
|
|
|
strokeLinejoin="round"
|
|
|
|
|
strokeWidth="1"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
aria-hidden="true"
|
|
|
|
|
className={cn('w-4 h-4', className)}
|
|
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
<path d="M16.88 3.549L7.12 20.451"></path>
|
|
|
|
|
</svg>
|
|
|
|
|
)
|
|
|
|
|
}
|