Sha256: 5ba59ed75bbdcb8c223f4b07e8bc3738399d78428e288f35dae9374e002fe624
Contents?: true
Size: 706 Bytes
Versions: 671
Compression:
Stored size: 706 Bytes
Contents
import React from 'react' import { Contact } from 'playbook-ui' const ContactDefault = (props) => { return ( <div> <Contact contactType="cell" contactValue="349-185-9988" {...props} /> <Contact contactValue="5555555555" {...props} /> <Contact contactType="email" contactValue="email@example.com" {...props} /> <Contact contactType="work" contactValue="3245627482" {...props} /> <Contact contactType="work-cell" contactValue="3245627482" {...props} /> </div> ) } export default ContactDefault
Version data entries
671 entries across 671 versions & 2 rubygems