This commit is contained in:
sunzhongyi
2026-05-20 01:30:41 +08:00
parent f3e6b95be9
commit 7dded89537
44 changed files with 1166 additions and 3699 deletions
+29 -11
View File
@@ -1,29 +1,47 @@
import React from 'react';
'use client';
import React, { ReactNode, CSSProperties } from 'react';
import { visualWeights, resolveFontSize } from '@newspaperui/theme';
import { cx } from '@newspaperui/utils';
export interface CaptionProps {
children: React.ReactNode;
credit?: string; // e.g. "Photograph by Jane Doe"
className?: string;
style?: CSSProperties;
children: ReactNode;
}
export const Caption: React.FC<CaptionProps> = ({ children }) => {
const config = visualWeights.Caption.Standard;
if (!config) {
throw new Error('Caption configuration not found');
}
export const Caption: React.FC<CaptionProps> = ({ credit, className, style, children }) => {
const config = visualWeights.Caption.Standard!;
return (
<figcaption
className="newspaper-caption"
className={cx('nui-caption nui-osf', className)}
style={{
fontFamily: `var(${config.fontFamily})`,
fontSize: resolveFontSize(config.fontSize),
fontWeight: config.fontWeight,
fontStyle: config.fontStyle,
lineHeight: config.lineHeight,
color: config.color,
color: `var(${config.color})`,
margin: config.margin,
...style,
}}
>
{children}
{credit && (
<span
className="nui-small-caps"
style={{
display: 'inline-block',
marginLeft: 'var(--nui-space-2)',
fontSize: '11px',
color: 'var(--nui-text-muted)',
fontStyle: 'normal',
letterSpacing: '0.06em',
}}
>
{credit}
</span>
)}
</figcaption>
);
};