'use client'; import React, { ReactNode, CSSProperties } from 'react'; import { visualWeights, resolveFontSize } from '@newspaperui/theme'; import { cx } from '@newspaperui/utils'; export interface KickerProps { className?: string; style?: CSSProperties; children: ReactNode; } export const Kicker: React.FC = ({ className, style, children }) => { const config = visualWeights.Kicker.Standard!; return (
{children}
); };