@fidely-ui/react
Version:
Fidely UI is a modern, beautifully crafted React design system powered by Ark UI and Panda CSS, delivering accessible and themeable components for building exceptional web apps
12 lines (11 loc) • 473 B
TypeScript
import { ClientOnly as ArkClientOnly } from '@ark-ui/react/client-only';
import { ComponentProps } from '@fidely-ui/styled-system/types';
export interface ClientOnlyProps extends ComponentProps<typeof ArkClientOnly> {
}
/**
* Fidely UI ClientOnly
*
* Wraps Ark UI's ClientOnly to render content only on the client.
* Supports a `fallback` for SSR/initial render.
*/
export declare const ClientOnly: (props: ClientOnlyProps) => import("react/jsx-runtime").JSX.Element;