import { LoadingOutline } from '@/icons/loading-outline'; import { Dashicon } from '@wordpress/components'; import clsx from 'clsx'; import { ReactNode } from 'react'; interface LoadingProps { loading?: boolean; children?: ReactNode; offsetTop?: string; } const PREFIX = 'lks-loading'; export const Loading = ({ loading = true, offsetTop = '45%', children, }: LoadingProps) => { return (