Flow strictifying AdsManagerAudienceImages.js
Reviewed By: gkz Differential Revision: D10414273 fbshipit-source-id: 24c7e8955d78aeede8b0644cc9934e0b7fb5aa27
This commit is contained in:
parent
66aba09251
commit
136dfc8312
|
@ -399,7 +399,19 @@ function extractStrokeJoin(strokeJoin) {
|
|||
// Note: ART has a notion of width and height on Shape but AFAIK it's a noop in
|
||||
// ReactART.
|
||||
|
||||
class Shape extends React.Component {
|
||||
export type ShapeProps = {|
|
||||
fill?: mixed,
|
||||
stroke?: mixed,
|
||||
strokeCap?: mixed,
|
||||
strokeDash?: mixed,
|
||||
strokeJoin?: mixed,
|
||||
strokeWidth?: mixed,
|
||||
x?: number,
|
||||
y?: number,
|
||||
opacity?: mixed,
|
||||
|};
|
||||
|
||||
class Shape extends React.Component<ShapeProps> {
|
||||
render() {
|
||||
const props = this.props;
|
||||
const path = props.d || childrenAsString(props.children);
|
||||
|
|
Loading…
Reference in New Issue