Merge version_1 into main #3
@@ -4,7 +4,7 @@ interface SvgTextLogoProps {
|
||||
text: string;
|
||||
className?: string;
|
||||
fontSize?: number;
|
||||
dominantBaseline?: SVGTextElement['dominantBaseline'];
|
||||
dominantBaseline?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit';
|
||||
textAnchor?: 'start' | 'middle' | 'end';
|
||||
fill?: string;
|
||||
fontWeight?: number | string;
|
||||
@@ -34,7 +34,7 @@ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
|
||||
fontSize={fontSize}
|
||||
fontWeight={fontWeight}
|
||||
fontFamily={fontFamily}
|
||||
dominantBaseline={dominantBaseline}
|
||||
dominantBaseline={dominantBaseline as any}
|
||||
textAnchor={textAnchor}
|
||||
fill={fill}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user