react-web-native-sketch
Version:
[TODO: We need an overview of how this can be used via npm vs as a local package]
17 lines (16 loc) • 402 B
TypeScript
import * as React from "react";
import { Classes } from "../../utils/theme.types";
export interface ViewProps {
accessible?: boolean;
children?: React.ReactNode;
collapsable?: boolean;
dangerouslySetInnerHTML?: {
__html: string;
};
id?: string;
/** for sketch */
name?: string;
onClick?: () => void;
style?: Classes;
onKeyPress?: (e: any) => void;
}