wash-cli 0.19.1

wasmcloud Shell (wash) CLI tool
1
2
3
4
5
6
7
8
import * as React from 'react';
import {cn} from 'lib/utils';

function Skeleton({className, ...props}: React.HTMLAttributes<HTMLDivElement>): React.ReactElement {
  return <div className={cn('animate-pulse rounded-md bg-primary/10', className)} {...props} />;
}

export {Skeleton};