UNPKG

show-hide-lib

Version:

A simple React component to show or hide content dynamically.

12 lines (9 loc) 257 B
import React from 'react'; type ShowHideProps = { show?: boolean; hide?: boolean; children: React.ReactNode; hiddenPlaceholder?: React.ReactNode; }; declare const ShowHide: React.FC<ShowHideProps>; export { ShowHide, type ShowHideProps };