1.0.3 • Published 7 years ago
@ygpedroso/react-autohide v1.0.3
@ygpedroso/react-autohide
React component that autohides itself after the specified amount of milliseconds
Install
npm install --save @ygpedroso/react-autohideor
yarn add @ygpedroso/react-autohideUsage
import React, { Component } from 'react'
import AutoHide from '@ygpedroso/react-autohide'
class Example extends Component {
render () {
return (
<AutoHide>
My Content
</AutoHide>
)
}
}Available props
msAmount of milliseconds to wait before hiding the component: (Type:Number, Default value:1000)childrenRequired, content to be displayed and autohide: (TypeNode)
Styling
By default the children component will be displayed inside a span element, with .autohide class and none styling what so ever:
But the styles can be modified by overriding this css class:
1. .autohide: Entire Component container.
License
@ygpedroso/react-autohide is MIT-licensed.