Feed
Feed is a vertical display of content.
Applied to Front End Developer
Advanced to phone screeingin by Bethany Blake
Completed phone screening with Martha Gardner
Advanced to interview by Bethany Blake
Completed interview with Katherine Snyder
<script lang="ts">
   import { Feed } from 'stwui';
   import { formatDate } from 'stwui/utils';
	const check = "svg-path";
	const currency_usd = "svg-path";
	interface Item {
		avatar?: string;
		icon?: string;
		content: string;
		date: Date;
	}
	const items: Item[] = [
		{
			avatar:
				'https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80',
			content: '<span>Applied to <a href="#item1" class="font-bold">Front End Developer</a></span>',
			date: new Date(2022, 8, 21)
		},
		{
			icon: currency_usd,
			content:
				'<span>Advanced to phone screeingin by <a href="#item2" class="font-bold">Bethany Blake</a></span>',
			date: new Date(2022, 8, 19)
		},
		{
			icon: check,
			content:
				'<span>Completed phone screening with <a href="#item3" class="font-bold">Martha Gardner</a></span>',
			date: new Date(2022, 8, 15)
		},
		{
			icon: currency_usd,
			content:
				'<span>Advanced to interview by <a href="#item4" class="font-bold">Bethany Blake</a></span>',
			date: new Date(2022, 8, 2)
		},
		{
			icon: check,
			content:
				'<span>Completed interview with <a href="#item5" class="font-bold">Katherine Snyder</a></span>',
			date: new Date(2022, 7, 22)
		}
	];
</script>
<Feed>
   {#each items as item}
      {#if item.avatar}
         <Feed.Item>
            <Feed.Item.Leading slot="leading">
               <Feed.Item.Leading.Avatar slot="avatar" src={item.avatar} />
            </Feed.Item.Leading>
            <Feed.Item.Content slot="content">
               {@html item.content}
            </Feed.Item.Content>
            <Feed.Item.DateTime slot="datetime">
               <time datetime={item.date.toISOString()}>{formatDate(item.date)}</time>
            </Feed.Item.DateTime>
         </Feed.Item>
      {:else if item.icon}
         <Feed.Item>
            <Feed.Item.Leading
               slot="leading"
               class="bg-info-background"
            >
               <Feed.Item.Leading.Icon slot="icon" data={item.icon} />
            </Feed.Item.Leading>
            <Feed.Item.Content slot="content">
               {@html item.content}
            </Feed.Item.Content>
            <Feed.Item.DateTime slot="datetime">
               <time datetime={item.date.toISOString()}>{formatDate(item.date)}</time>
            </Feed.Item.DateTime>
         </Feed.Item>
      {:else}
         <Feed.Item>
            <Feed.Item.Content slot="content">
               {@html item.content}
            </Feed.Item.Content>
            <Feed.Item.DateTime slot="datetime">
               <time datetime={item.date.toISOString()}>{formatDate(item.date)}</time>
            </Feed.Item.DateTime>
         </Feed.Item>
      {/if}
   {/each}
</Feed>Feed Slots
| default | <Feed.Item /> | 
Feed.Item Slots
| connector | <Feed.Item.Connector slot="connector" /> | 
| leading | <Feed.Item.Leading slot="leading" /> | 
| content | <Feed.Item.Content slot="content" /> | 
| datetime | <Feed.Item.DateTime slot="datetime" /> | 
Feed.Item.Leading Slots
| icon | <Feed.Item.Leading.Icon slot="icon" /> | 
| avatar | <Feed.Item.Leading.Avatar slot="avatar" /> | 
| default | 
Feed.Item.Leading.Avatar Props
| src | string | |
| alt | string | user-avatar | 
| size | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | sm | 
Feed.Item.Leading.Icon Props
| data | string (IconData) | |
| viewBox | string | 0 0 24 24 | 
| size | string | 24px | 
| width | string | 24px | 
| height | string | 24px | 
| color | string | currentColor | 
| stroke | string | undefined | |
| fill | string | currentColor | 
Feed.Item.Content Slots
| default | 
