/
rykit
/
lifequest-app
Обзор
Документация
Войти
/
rykit
/
lifequest-app
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/shared/components/ScreenHeader.tsx
19 строк
541 B
Rykitik
chore: initial commit
25 апр 2026, 14:11
25 апр 2026, 14:11
577d0a6
Код
Авторство
О чём код?
import type { ReactNode } from 'react' interface ScreenHeaderProps { title: string subtitle: string action?: ReactNode } export function ScreenHeader({ title, subtitle, action }: ScreenHeaderProps) { return ( <div className="mb-5 flex items-start justify-between gap-4"> <div> <p className="font-display text-2xl font-bold text-white">{title}</p> <p className="mt-1 max-w-xs text-sm text-muted">{subtitle}</p> </div> {action ? <div className="shrink-0">{action}</div> : null} </div> ) }