Skip to content

Commit

Permalink
Revert "Assistant Builder action screen take II (#3930)" (#3935)
Browse files Browse the repository at this point in the history
This reverts commit 33fb11a.
  • Loading branch information
PopDaph authored Feb 26, 2024
1 parent 7b3b821 commit 70c90ec
Show file tree
Hide file tree
Showing 9 changed files with 246 additions and 216 deletions.
8 changes: 4 additions & 4 deletions front/components/EmptyCallToAction.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Button } from "@dust-tt/sparkle";
import { Button, PlusIcon } from "@dust-tt/sparkle";
import Link from "next/link";
import type { ComponentType, MouseEvent } from "react";
import React from "react";
Expand All @@ -8,7 +8,7 @@ import { classNames } from "@app/lib/utils";
export function EmptyCallToAction({
label,
disabled = false,
icon,
icon = PlusIcon,
href,
onClick,
}: {
Expand All @@ -21,7 +21,7 @@ export function EmptyCallToAction({
const button = (
<Button
disabled={disabled}
size="sm"
size="md"
label={label}
variant="primary"
icon={icon}
Expand All @@ -31,7 +31,7 @@ export function EmptyCallToAction({
return (
<div
className={classNames(
"flex h-full min-h-40 items-center justify-center rounded-lg bg-structure-50"
"flex h-full min-h-48 items-center justify-center rounded-lg bg-structure-50"
)}
>
{href ? <Link href={href}>{button}</Link> : button}
Expand Down
Loading

0 comments on commit 70c90ec

Please sign in to comment.