Card
Display a card with a title and optional icon.
You can use the Card component to display a card with a title and optional icon.
Usage
With Icon
Pass an icon component to the icon prop to display an icon in the card.
		<script>
	import { Card } from "@svecodocs/ui";
	import RocketLaunch from "phosphor-svelte/lib/RocketLaunch";
</script>
 
<Card title="A card with an icon" icon={RocketLaunch}>
	You can use markdown in here, just ensure to include a space between the component and the
	content in your Markdown file.
</Card>
	Link Card
Pass the href prop to convert the card into a link.
		<script>
	import { Card } from "@svecodocs/ui";
	import RocketLaunch from "phosphor-svelte/lib/RocketLaunch";
</script>
 
<Card title="A card with a link" href="/docs" icon={RocketLaunch}>
	You can use markdown in here, just ensure to include a space between the component and the
	content in your Markdown file.
</Card>
	A card with a link
 You can use markdown in here, just ensure to include a space between the component and the content
	in your Markdown file.
Without Icon
If you don't want to use an icon, just don't pass the icon prop.
		<script>
	import { Card } from "@svecodocs/ui";
</script>
 
<Card title="A card without an icon">
	You can use markdown in here, just ensure to include a space between the component and the
	content in your Markdown file.
</Card>
	A card without an icon
 You can use markdown in here, just ensure to include a space between the component and the content in your Markdown file.
Horizontal
You can use the horizontal prop to display the card horizontally.
		<script>
	import { Card } from "@svecodocs/ui";
	import RocketLaunch from "phosphor-svelte/lib/RocketLaunch";
</script>
 
<Card title="A card horizontally" horizontal icon={RocketLaunch}>
	You can use markdown in here, just ensure to include a space between the component and the
	content in your Markdown file.
</Card>
	A horizontal card
 You can use markdown in here, just ensure to include a space between the component and the content in your Markdown file.