mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 02:40:14 +01:00
13 lines
341 B
TypeScript
13 lines
341 B
TypeScript
|
|
import type { TGenButtonProps } from '~/common';
|
||
|
|
import { ContinueIcon } from '~/components/svg';
|
||
|
|
import Button from './Button';
|
||
|
|
|
||
|
|
export default function Continue({ onClick }: TGenButtonProps) {
|
||
|
|
return (
|
||
|
|
<Button type="continue" onClick={onClick}>
|
||
|
|
<ContinueIcon className="text-gray-600/90" />
|
||
|
|
Continue
|
||
|
|
</Button>
|
||
|
|
);
|
||
|
|
}
|