UNPKG

@littlespoon/divider

Version:
19 lines (17 loc) 405 B
/** * Flowtype definitions for Divider * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 * @flow */ import React from "react"; export type DividerProps = { /** * The curve divider variant, defaults to false */ inverted?: boolean, ... } & React.SVGAttributes<SVGElement>; declare export default function Divider( x: DividerProps ): React.ReactElement<DividerProps>;