Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #5.
This commit is contained in:
@@ -6,7 +6,7 @@ interface SvgTextLogoProps {
|
||||
fontSize?: number;
|
||||
fontWeight?: string | number;
|
||||
letterSpacing?: number;
|
||||
dominantBaseline?: 'auto' | 'baseline' | 'central' | 'hanging' | 'inherit' | 'reset-size' | 'no-change';
|
||||
dominantBaseline?: 'auto' | 'alphabetic' | 'central' | 'hanging' | 'inherit' | 'reset-size' | 'no-change';
|
||||
}
|
||||
|
||||
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
|
||||
@@ -27,7 +27,7 @@ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
|
||||
x="50%"
|
||||
y="50%"
|
||||
textAnchor="middle"
|
||||
dominantBaseline={dominantBaseline as 'auto' | 'baseline' | 'central' | 'hanging' | 'inherit' | 'reset-size' | 'no-change'}
|
||||
dominantBaseline={dominantBaseline as 'auto' | 'alphabetic' | 'central' | 'hanging' | 'inherit' | 'reset-size' | 'no-change'}
|
||||
fontSize={fontSize}
|
||||
fontWeight={fontWeight}
|
||||
letterSpacing={letterSpacing}
|
||||
|
||||
Reference in New Issue
Block a user