Inclusion of at least one special character, e.g., ! @ # ?
<scriptlang="ts">import { Alert } from'svelte-5-ui-lib';
import { InfoCircleSolid } from"flowbite-svelte-icons";
</script><divclass="mb-4"><Alertcolor="blue"class="!items-start">
{#snippet icon()}
<InfoCircleSolidclass="h-5 w-5" />
{/snippet}
<pclass="font-medium">Ensure that these requirements are met:</p><ulclass="ms-4 mt-1.5 list-inside list-disc"><li>At least 10 characters (and up to 100 characters)</li><li>At least one lowercase character</li><li>Inclusion of at least one special character, e.g., ! @ # ?</li></ul></Alert></div>
Additional content
This is a info alert
More info about this info alert goes here. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.
<scriptlang="ts">import { Alert, Button } from'svelte-5-ui-lib';
import { InfoCircleSolid, EyeSolid } from"flowbite-svelte-icons";
</script><divclass="mb-4"><Alertcolor="blue"class="!items-start">
{#snippet icon()}
<InfoCircleSolidclass="mt-1 h-5 w-5" />
{/snippet}
<pclass="text-lg font-medium">This is a info alert</p><pclass="mb-4 mt-2 text-sm">More info about this info alert goes here. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p><divclass="flex gap-2"><Buttonsize="xs"><EyeSolidclass="me-2 h-4 w-4" />View more</Button><Buttonsize="xs"outline>Go to Home</Button></div></Alert></div>