12 lines
324 B
TypeScript
Executable File
12 lines
324 B
TypeScript
Executable File
import { JSXInternal } from "node_modules/preact/src/jsx";
|
|
import "../style.css"
|
|
|
|
type DefaultLoadingAnimationProps = {
|
|
style: JSXInternal.CSSProperties
|
|
}
|
|
|
|
const DefaultLoadingAnimation = (props: DefaultLoadingAnimationProps) => (
|
|
<div style={props.style} class="loader"></div>
|
|
)
|
|
|
|
export default DefaultLoadingAnimation; |