mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
* Create DS version for Bootstrap Input form elements * Move DS Button Storybook to DS component folder * Use phosphor icons * Add ds-focus-outline mixin * Use math.div GitOrigin-RevId: e50934212ec5949f0f7abc7880eb73933fce2a9b
15 lines
328 B
TypeScript
15 lines
328 B
TypeScript
import { ComponentProps } from 'react'
|
|
import { Form } from 'react-bootstrap'
|
|
import classnames from 'classnames'
|
|
|
|
function DSFormLabel({
|
|
className,
|
|
...props
|
|
}: ComponentProps<typeof Form.Label>) {
|
|
return (
|
|
<Form.Label {...props} className={classnames('form-label-ds', className)} />
|
|
)
|
|
}
|
|
|
|
export default DSFormLabel
|