hilingriviw/src/components/LoadingAnimation/Default/index.tsx
2025-04-11 06:46:12 +07:00

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;