sc-react-ions
Version:
An open source set of React components that implement Ambassador's Design and UX patterns.
17 lines (13 loc) • 351 B
JavaScript
import React from 'react'
import styled from 'styled-components'
import Textarea from 'react-ions/lib/components/Textarea'
const StyledTextarea = styled(Textarea)`
textarea {
height: 150px;
background-color: #F7F7F9;
}
`
const ExampleTextareaStyled = () => (
<StyledTextarea name='textarea' value='' />
)
export default ExampleTextareaStyled