mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-31 02:00:07 +02:00

Apply minor upgrades to Bootstrap 5 and react-bootstrap GitOrigin-RevId: eb013f38515ebd4b9572d139f00841aca344e3c6
7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
import { ToggleButton, ToggleButtonProps } from 'react-bootstrap'
|
|
|
|
function OLToggleButton(props: ToggleButtonProps) {
|
|
return <ToggleButton {...props} />
|
|
}
|
|
|
|
export default OLToggleButton
|