blob: 325cbb3b19d99c9e38d0badf386de8bc2f5a2d97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import type { HTMLAttributes } from "corvos/plugins/jsx.ts";
export type Props = HTMLAttributes<"svg">;
export const LoadingIndicator = (props: Props) => (
<svg height="50" width="50" {...props}>
<title>Loading indicator</title>
<use href="#loading-indicator" />
</svg>
);
|