@edancerys/ts-react-components-lib
Version:
22 lines (21 loc) • 623 B
TypeScript
import React from 'react';
import { CarouselProps } from './Carousel';
export interface ListingComponentProps {
links?: CarouselProps['links'];
saved?: boolean;
title?: string;
pricePerDay?: number;
pricePerWeek?: number;
pricePerMonth?: number;
distance?: number;
rating?: number;
reviews?: number;
backgroundColor?: string;
margin?: string;
padding?: string;
width?: string;
height?: string;
className?: string;
onLikeClick?: (event?: React.MouseEvent) => void;
}
export declare const ListingComponent: React.FC<ListingComponentProps>;