File size: 361 Bytes
9705b6c
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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 dark:text-gray-400 " />
      Continue
    </Button>
  );
}