UNPKG

template_assets

Version:

![Compatibility](https://img.shields.io/badge/compatibility-0.6.25-blue) [![Build Status](https://github.com/dfinity/examples/workflows/motoko-superheroes-example/badge.svg)](https://github.com/dfinity/examples/actions?query=workflow%3Amotoko-superheroes

15 lines (12 loc) 392 B
import React from 'react'; import "./styles.scss"; export const TextInput = ({ icon, placeholder, type="text" }) => { return ( <div className="text-input"> <div className="text-input__icon"> { icon } </div> <input className="text-input__input" type={ type } placeholder={ placeholder } /> </div> ) }