({
className,
variant,
...props
}: PlateStaticProps & VariantProps<typeof editorVariants>)
| 42 | ); |
| 43 | |
| 44 | export function EditorStatic({ |
| 45 | className, |
| 46 | variant, |
| 47 | ...props |
| 48 | }: PlateStaticProps & VariantProps<typeof editorVariants>) { |
| 49 | return ( |
| 50 | <PlateStatic |
| 51 | className={cn(editorVariants({ variant }), className)} |
| 52 | {...props} |
| 53 | /> |
| 54 | ); |
| 55 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…