mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-31 02:00:07 +02:00
13 lines
383 B
TypeScript
13 lines
383 B
TypeScript
import { forwardRef } from 'react'
|
|
import type { ButtonProps } from '@/features/ui/components/types/button-props'
|
|
import Button from '../bootstrap-5/button'
|
|
|
|
export type OLButtonProps = ButtonProps
|
|
|
|
const OLButton = forwardRef<HTMLButtonElement, OLButtonProps>((props, ref) => {
|
|
return <Button {...props} ref={ref} />
|
|
})
|
|
|
|
OLButton.displayName = 'OLButton'
|
|
|
|
export default OLButton
|