fix: add company address to business card layout
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 14s
Build & Deploy / 🧪 QA (push) Successful in 1m21s
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
Build & Deploy / 🏗️ Build (push) Has been cancelled
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 14s
Build & Deploy / 🧪 QA (push) Successful in 1m21s
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
Build & Deploy / 🏗️ Build (push) Has been cancelled
This commit is contained in:
@@ -280,6 +280,15 @@ const GlobeIcon = () => (
|
|||||||
</Svg>
|
</Svg>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const LocationIcon = () => (
|
||||||
|
<Svg viewBox="0 0 24 24" width={9} height={9}>
|
||||||
|
<Path
|
||||||
|
d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"
|
||||||
|
fill="#000000"
|
||||||
|
/>
|
||||||
|
</Svg>
|
||||||
|
);
|
||||||
|
|
||||||
const ScanIcon = () => (
|
const ScanIcon = () => (
|
||||||
<Svg viewBox="0 0 24 24" width={9} height={9}>
|
<Svg viewBox="0 0 24 24" width={9} height={9}>
|
||||||
<Path
|
<Path
|
||||||
@@ -727,6 +736,12 @@ export const PDFBusinessCard: React.FC<PDFBusinessCardProps> = ({
|
|||||||
</View>
|
</View>
|
||||||
|
|
||||||
<View style={styles.contactSection}>
|
<View style={styles.contactSection}>
|
||||||
|
<View style={styles.contactRow}>
|
||||||
|
<View style={styles.iconWrapper}>
|
||||||
|
<LocationIcon />
|
||||||
|
</View>
|
||||||
|
<Text style={styles.contactText}>Raiffeisenstraße 22, 73630 Remshalden</Text>
|
||||||
|
</View>
|
||||||
<View style={styles.contactRow}>
|
<View style={styles.contactRow}>
|
||||||
<View style={styles.iconWrapper}>
|
<View style={styles.iconWrapper}>
|
||||||
<PhoneIcon />
|
<PhoneIcon />
|
||||||
|
|||||||
Reference in New Issue
Block a user