ButtonSet.tsx 332 B

1234567891011121314
  1. import './ButtonSet.scss'
  2. import type { PropsWithChildren } from 'react'
  3. export interface ButtonSetProps {
  4. className?: string
  5. }
  6. export default function ButtonSet({ className = '', ...props }: PropsWithChildren<ButtonSetProps>) {
  7. return (
  8. <div className={`button-set ${className}`}>
  9. {props.children}
  10. </div>
  11. )
  12. }