cycles-quartz/apps/transfers/frontend/scripts/templates/NewComponent.tsx
2024-07-10 21:11:07 +02:00

25 lines
407 B
TypeScript

import { ComponentProps } from 'react'
import { twMerge } from 'tailwind-merge'
interface NewComponentProps extends ComponentProps<'div'> {}
export function NewComponent({
children,
className,
...otherProps
}: NewComponentProps) {
return (
<div
className={twMerge(
`
`,
className,
)}
{...otherProps}
>
{children}
</div>
)
}