mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
19 lines
583 B
JavaScript
19 lines
583 B
JavaScript
import React from "react"
|
|
import Style from "./ButtonHeader.module.css"
|
|
import classNames from "classnames"
|
|
import Button from "./Button"
|
|
|
|
|
|
/**
|
|
* A {@link Button} without `boxShadow` and with `flexGrow`, to be used in {@link PageWithHeader}.
|
|
*
|
|
* @param className - Additional class(es) to add to the button.
|
|
* @param props - Additional props to pass to the button.
|
|
* @returns {JSX.Element}
|
|
* @constructor
|
|
*/
|
|
export default function ButtonHeader({ className, ...props }) {
|
|
return (
|
|
<Button className={classNames(Style.ButtonHeader, className)} {...props}/>
|
|
)
|
|
}
|