mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
19 lines
470 B
JavaScript
19 lines
470 B
JavaScript
import React from "react"
|
|
import Style from "./FormButton.module.css"
|
|
import classNames from "classnames"
|
|
import Button from "../Button"
|
|
|
|
|
|
/**
|
|
* A {@link Button} ready to be used in a {@link FormLabelled}.
|
|
*
|
|
* @returns {JSX.Element}
|
|
* @constructor
|
|
*/
|
|
export default function FormButton({ children, className, ...props }) {
|
|
return (
|
|
<Button className={classNames(Style.FormButton, className)} {...props}>
|
|
{children}
|
|
</Button>
|
|
)
|
|
}
|