mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
19 lines
479 B
JavaScript
19 lines
479 B
JavaScript
/*
|
|
* Copyright (c) 2026 by Christian Kellner.
|
|
* Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause
|
|
*/
|
|
|
|
import './Headline.less';
|
|
|
|
export default function Headline({ text, actions } = {}) {
|
|
return (
|
|
<div className="page-heading">
|
|
<div className="page-heading__row">
|
|
<h1 className="page-heading__title">{text}</h1>
|
|
{actions && <div>{actions}</div>}
|
|
</div>
|
|
<div className="page-heading__line" />
|
|
</div>
|
|
);
|
|
}
|