import type { ElementType } from 'react'; import React from 'react'; import { clsx } from 'clsx'; import type { AsProps } from '../props'; export type EmptyPlaceholderProps = AsProps; export const EmptyPlaceholder = ({ as: As = 'span', className, children = '无', ...rest }: EmptyPlaceholderProps) => { return ( {children} ); };