mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-15 11:51:34 +00:00
26 lines
525 B
TypeScript
26 lines
525 B
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
import { CodeBlockWrapper } from "@/components/code-block-wrapper"
|
|
|
|
interface ComponentSourceProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
src: string
|
|
}
|
|
|
|
export function ComponentSource({
|
|
children,
|
|
className,
|
|
...props
|
|
}: ComponentSourceProps) {
|
|
return (
|
|
<CodeBlockWrapper
|
|
expandButtonTitle="Expand"
|
|
className={cn("my-6 overflow-hidden rounded-md", className)}
|
|
>
|
|
{children}
|
|
</CodeBlockWrapper>
|
|
)
|
|
}
|