import React from 'react'; import clsx from 'clsx'; import { BaseProps } from '@digigov/react-core/Base'; export interface TestVariantProps extends BaseProps<'div'> { title?: string; } export const TestVariant = React.forwardRef( function TestVariant({ title, children, ...props }) { return (

{title}

{children}
); } ); export default TestVariant;