added missing class and offset (#553)

This commit is contained in:
Christopher Powroznik
2018-01-12 07:36:30 +03:00
committed by Dustin Savery
parent ec2a967592
commit 2191656fa2
Vendored
+2
View File
@@ -175,6 +175,7 @@ interface RectProps extends PathProps {
height?: NumberProp, height?: NumberProp,
rx?: NumberProp, rx?: NumberProp,
ry?: NumberProp, ry?: NumberProp,
class? : string
} }
export const Rect: React.ComponentClass<RectProps>; export const Rect: React.ComponentClass<RectProps>;
@@ -183,6 +184,7 @@ export const Shape: React.ComponentClass<{}>;
interface StopProps { interface StopProps {
stopColor?: string, stopColor?: string,
stopOpacity?: NumberProp, stopOpacity?: NumberProp,
offset?: string
} }
export const Stop: React.ComponentClass<StopProps>; export const Stop: React.ComponentClass<StopProps>;