### React Card Component Source: https://docs.spark.money/wallets/overview Use the `Card` component to display a simple card with an icon, title, and description. It supports light and dark mode icons and links to a specified href. ```javascript export const Card = ({icon, iconLight, iconDark, href, title, description, target = "_self"}) => { return
; }; ``` -------------------------------- ### React Vertical Card Component Source: https://docs.spark.money/wallets/overview The `VCard` component displays a vertical card with an image, title, and description. It's suitable for content where an image is a primary visual element. Supports light and dark mode images. ```javascript export const VCard = ({img, light, dark, icon, href, title, description, target = "_self"}) => { return ; }; ``` -------------------------------- ### React Horizontal Card Component Source: https://docs.spark.money/wallets/overview Use the `HCard` component for a horizontal layout, featuring an icon on the left and text content on the right. It's ideal for compact information display and supports theme-aware icons. ```javascript export const HCard = ({icon, light, dark, href, title, description, target = "_self"}) => { return ; }; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.