Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
No EOL
682 B
Text
18 lines
No EOL
682 B
Text
import PropTypes from 'prop-types';
|
|
export var timeoutsShape = process.env.NODE_ENV !== 'production' ? PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
enter: PropTypes.number,
|
|
exit: PropTypes.number,
|
|
appear: PropTypes.number
|
|
}).isRequired]) : null;
|
|
export var classNamesShape = process.env.NODE_ENV !== 'production' ? PropTypes.oneOfType([PropTypes.string, PropTypes.shape({
|
|
enter: PropTypes.string,
|
|
exit: PropTypes.string,
|
|
active: PropTypes.string
|
|
}), PropTypes.shape({
|
|
enter: PropTypes.string,
|
|
enterDone: PropTypes.string,
|
|
enterActive: PropTypes.string,
|
|
exit: PropTypes.string,
|
|
exitDone: PropTypes.string,
|
|
exitActive: PropTypes.string
|
|
})]) : null; |