Textarea
A styled version of the textarea component. Allows customization with styled-components package.
Demo
API
Usage is the same as the original <textarea> component/JSX.
Example:
import { Textarea } from 'react-horcrux';
export default YourComponent function() {
return <Textarea placeholder="Leave a message..." required />;
}