mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-06-03 07:06:04 +00:00
TextSpecificProps are optional.
This commit is contained in:
Vendored
+5
-5
@@ -292,11 +292,11 @@ export interface TSpanProps extends CommonPathProps, FontProps {
|
|||||||
export const TSpan: React.ComponentClass<TSpanProps>;
|
export const TSpan: React.ComponentClass<TSpanProps>;
|
||||||
|
|
||||||
export interface TextSpecificProps extends CommonPathProps, FontProps {
|
export interface TextSpecificProps extends CommonPathProps, FontProps {
|
||||||
alignmentBaseline: AlignmentBaseline,
|
alignmentBaseline?: AlignmentBaseline,
|
||||||
baselineShift: BaselineShift,
|
baselineShift?: BaselineShift,
|
||||||
verticalAlign: NumberProp,
|
verticalAlign?: NumberProp,
|
||||||
lengthAdjust: LengthAdjust,
|
lengthAdjust?: LengthAdjust,
|
||||||
textLength: NumberProp,
|
textLength?: NumberProp,
|
||||||
fontData?: null | { [name: string]: any },
|
fontData?: null | { [name: string]: any },
|
||||||
fontFeatureSettings?: string,
|
fontFeatureSettings?: string,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user