Explore the available PDF template components with live examples and data structures.
Displays company information with logo and contact details.
Offerte 1234567890 01.01.2025 David Salodinidavidesalodini@gmail.com +32 485 40 26 71 Frankrijklei 67 |
export type HeaderData = {
name: string;
email: string;
phone: string;
address: string;
logo: string;
};Renders structured data in a table format with headers, rows, and footer.
These are the items that you have purchased
export type Table = {
title: string;
description: string;
header: string[];
items: (string | number)[][];
footer: (string | number)[];
};Displays a list of items in a card format.
accumulation
marathon
After coating myself in vegetable oil I found my success rate skyrocketed.
determine
Flying fish flew by the space station.
trail
export type ItemCards = {
title: string;
items: {
title: string;
description: string;
}[];
};Displays structured information in a list format with multiple columns.
export type List = {
title: string;
description: string;
items: (string | number)[][];
};Displays a gallery of images in a flexible layout. Combine one or more image Components to create a gallery.
You'll see the rainbow bridge after it rains cats and dogs.
// Props: { images: string[] }
// Example usage:
<Images images={["url1", "url2", "url3"]} />Displays prominent text with two values, often used for totals or important information.
export type HighlightText = {
text1: string;
text2: string;
};