mr-component
Version:
A library for Mr components
23 lines (22 loc) • 1.27 kB
TypeScript
import './index.scss';
export { default as VantButton } from './VantButton';
export { default as VantInput } from './VantInput';
export { default as VantCell } from './VantCell';
export { default as VantTag } from './VantTag';
export { default as VantImage } from './VantImage';
export { default as MrButton } from './components/MrButton';
export { default as MrInput } from './components/MrInput';
export { default as MrSelect } from './components/MrSelect';
export { default as MrCard } from './components/MrCard';
export { default as MrPaymentPopup } from './components/MrPaymentPopup';
export { default as MrTitle } from './components/MrTitle';
export { default as MrSwitchCell } from './components/MrSwitchCell';
export type { MrButtonProps } from './components/MrButton';
export type { MrInputProps } from './components/MrInput';
export type { MrSelectProps } from './components/MrSelect';
export type { MrCardProps } from './components/MrCard';
export type { MrPaymentPopupProps, PaymentOption } from './components/MrPaymentPopup';
export type { MrTitleProps } from './components/MrTitle';
export type { MrSwitchCellProps } from './components/MrSwitchCell';
export { default as ExampleComponent } from './ExampleComponent';
export { default } from './VantButton';