({
children,
className,
...props
}: HTMLAttributes<HTMLSpanElement>)
| 354 | ); |
| 355 | |
| 356 | export const CodeBlockFilename = ({ |
| 357 | children, |
| 358 | className, |
| 359 | ...props |
| 360 | }: HTMLAttributes<HTMLSpanElement>) => ( |
| 361 | <span className={cn("font-mono", className)} {...props}> |
| 362 | {children} |
| 363 | </span> |
| 364 | ); |
| 365 | |
| 366 | export const CodeBlockActions = ({ |
| 367 | children, |