import React from 'react';
import { PixelEmptyState } from '../feedback';
import { PixelButton } from '../actions';
export function Default() {
return (
);
}
const FolderIcon = () => (
);
export function WithIcon() {
return (
}
title="No projects yet"
description="Create your first project to get started organizing your work."
/>
);
}
export function WithAction() {
return (
Refresh
}
/>
);
}
export function WithIconAndAction() {
return (
}
title="No documents"
description="Upload a file or create a new document to begin."
action={
Create document
}
/>
);
}
export function Surfaces() {
return (
);
}