Files
remark42/frontend/app/components/preloader.tsx
T
2021-08-08 14:25:10 -05:00

11 lines
230 B
TypeScript

import { h } from 'preact';
import clsx from 'clsx';
type Props = {
className?: string;
};
export function Preloader({ className }: Props) {
return <div className={clsx('preloader', className)} aria-label="Loading..." />;
}