Files
fredy/ui/src/components/headline/Headline.jsx

17 lines
403 B
React
Raw Normal View History

2025-12-11 10:40:55 +01:00
/*
* Copyright (c) 2026 by Christian Kellner.
2025-12-11 10:40:55 +01:00
* Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause
*/
import React from 'react';
2023-03-20 08:52:13 +01:00
import { Typography } from '@douyinfe/semi-ui';
2023-03-20 08:52:13 +01:00
export default function Headline({ text, size = 3 } = {}) {
const { Title } = Typography;
return (
2023-03-20 08:52:13 +01:00
<Title heading={size} style={{ marginBottom: '1rem' }}>
{text}
2023-03-20 08:52:13 +01:00
</Title>
);
}