ぼざクリタグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
313 B

  1. import { cn } from '@/lib/utils'
  2. import type { ComponentPropsWithoutRef, FC } from 'react'
  3. type Props = ComponentPropsWithoutRef<'h2'>
  4. export default (({ children, className, ...rest }: Props) => (
  5. <h2 {...rest} className={cn ('text-xl my-4', className)}>
  6. {children}
  7. </h2>)) satisfies FC<Props>