* feat: adding create bot functionality Signed-off-by: James <james@jan.ai> * update the temperature progress bar Signed-off-by: James <james@jan.ai> * chore: remove tgz Signed-off-by: James <james@jan.ai> * update core dependency Signed-off-by: James <james@jan.ai> * fix e2e test Signed-off-by: James <james@jan.ai> --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai>
30 lines
724 B
TypeScript
30 lines
724 B
TypeScript
import React from 'react'
|
|
|
|
type Props = {
|
|
title: string
|
|
onClick?: () => void
|
|
isSubmit?: boolean
|
|
fullWidth?: boolean
|
|
className?: string
|
|
}
|
|
|
|
const PrimaryButton: React.FC<Props> = ({
|
|
title,
|
|
onClick,
|
|
isSubmit = false,
|
|
fullWidth = false,
|
|
className,
|
|
}) => (
|
|
<button
|
|
onClick={() => onClick?.()}
|
|
type={isSubmit ? "submit" : "button"}
|
|
className={`line-clamp-1 flex-shrink-0 rounded-md bg-blue-500 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-blue-400 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-50 ${className} ${
|
|
fullWidth ? 'flex-1 ' : ''
|
|
}}`}
|
|
>
|
|
{title}
|
|
</button>
|
|
)
|
|
|
|
export default PrimaryButton
|