Creates <a>
element with href
attribute formatted according to SMS protocol.
import {Sms} from 'libreact/lib/Sms';
<Sms phone='123' body='hello'>Click me!</Sms>
interface ISmsProps {
phone: string;
body?: string;
}
, where
phone
- required, string, phone number.body
- optional, string, SMS text body.