mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 21:59:00 +02:00
28468e134c
Remove react-bootstrap 0.33.1 GitOrigin-RevId: c320a6b18c576afdc0fd49559915d3d2f3a7a1ef
14 lines
383 B
TypeScript
14 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
|