UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

9 lines (8 loc) 318 B
export interface PhoneNumberProps { /** The phone number. Expect the following +16174659898 or 6174659898 */ number: string; /** Details around contacting the provided phone number */ details?: string | object; } declare const PhoneNumber: (props: PhoneNumberProps) => any; export default PhoneNumber;