examples/empty-state-action.tsx
1"use client";23import { EmptyState } from "@/components/wensity/empty-state";4import { IconPlus } from "@tabler/icons-react";56export function ActionEmptyState() {7 return (8 <EmptyState9 icon={<IconPlus />}10 title="No API tokens"11 description="Create a token to authenticate with the Wensity CLI."12 action={13 <button type="button">14 <IconPlus />15 New token16 </button>17 }18 />19 );20}