custom-app
Version:
ITIMS��Ʒ�鿪��ר��React���,�Dz��ý��ּ�dhcc-app���������
21 lines (14 loc) • 483 B
TypeScript
import * as React from 'react'
export interface ButtonOrProps extends StrictButtonOrProps {
[key: string]: any
}
export interface StrictButtonOrProps {
/** An element type to render as (string or function). */
as?: any
/** Additional classes. */
className?: string
/** Or buttons can have their text localized, or adjusted by using the text prop. */
text?: number | string
}
declare const ButtonOr: React.StatelessComponent<ButtonOrProps>
export default ButtonOr