66 NoSymbolIcon ,
77 RectangleStackIcon ,
88} from "@heroicons/react/20/solid" ;
9- import { BeakerIcon , BookOpenIcon , CheckIcon } from "@heroicons/react/24/solid" ;
9+ import { BookOpenIcon , CheckIcon } from "@heroicons/react/24/solid" ;
1010import { useLocation } from "@remix-run/react" ;
1111import { formatDuration , formatDurationMilliseconds } from "@trigger.dev/core/v3" ;
1212import { useCallback , useRef } from "react" ;
@@ -61,6 +61,7 @@ import { TaskTriggerSourceIcon } from "./TaskTriggerSource";
6161import { useOptimisticLocation } from "~/hooks/useOptimisticLocation" ;
6262import { useSearchParams } from "~/hooks/useSearchParam" ;
6363import type { TaskTriggerSource } from "@trigger.dev/database" ;
64+ import { BeakerIcon } from "~/assets/icons/BeakerIcon" ;
6465
6566type RunsTableProps = {
6667 total : number ;
@@ -663,25 +664,16 @@ function BlankState({
663664 < Paragraph className = "w-auto" variant = "base/bright" spacing >
664665 There are no runs for { filters . tasks [ 0 ] }
665666 </ Paragraph >
666- < div className = "mt-6 flex items-center justify-center gap-2 " >
667+ < div className = "flex justify-center" >
667668 < LinkButton
668669 to = { testPath }
669- variant = "tertiary /medium"
670+ variant = "secondary /medium"
670671 LeadingIcon = { BeakerIcon }
671- leadingIconClassName = "text-tests"
672+ leadingIconClassName = "text-tests -mx-2 gap-2 "
672673 className = "inline-flex"
673674 >
674675 Create a test run
675676 </ LinkButton >
676- < Paragraph variant = "small" > or</ Paragraph >
677- < LinkButton
678- to = { docsPath ( "v3/triggering" ) }
679- variant = "tertiary/medium"
680- LeadingIcon = { BookOpenIcon }
681- className = "inline-flex"
682- >
683- Triggering a task docs
684- </ LinkButton >
685677 </ div >
686678 </ TableBlankRow >
687679 ) ;
@@ -696,7 +688,7 @@ function BlankState({
696688 < div className = "flex items-center gap-2" >
697689 < Button
698690 LeadingIcon = { ArrowPathIcon }
699- variant = "tertiary /medium"
691+ variant = "secondary /medium"
700692 onClick = { ( ) => {
701693 window . location . reload ( ) ;
702694 } }
@@ -707,7 +699,7 @@ function BlankState({
707699 < LinkButton
708700 LeadingIcon = { BeakerIcon }
709701 leadingIconClassName = "text-tests"
710- variant = "tertiary /medium"
702+ variant = "secondary /medium"
711703 to = { testPath }
712704 >
713705 Run a test
0 commit comments