The HEADLINE
component is used to render prominent text that stands out for emphasis or as a section header. It typically provides a way to draw attention to significant sections within content.
import React from 'react';
import { HEADLINE } from '~/ui/components/Text';
export default function App() {
return (
<div>
<HEADLINE>This is a headline for important content.</HEADLINE>
</div>
);
}
This is a headline for important content.
The HEADLINE
component accepts all standard HTML text attributes, allowing for customization to fit various design needs.