Success
The task has been completed.
Warning
Something has gone wrong.
Error
Something has gone wrong.
<div class="w-full space-y-8">	{/* Success */}	<div class="card p-4 preset-filled-success-500 grid grid-cols-1 lg:grid-cols-[1fr_auto] items-center gap-4">		<div>			<p class="font-bold">Success</p>			<p>The task has been completed.</p>		</div>		<div class="flex gap-1">			<button class="btn">More</button>			<button class="btn">Dismiss</button>		</div>	</div>	{/* Warning */}	<div class="card p-4 preset-tonal-warning grid grid-cols-1 lg:grid-cols-[auto_1fr_auto] items-center gap-4">		<svg class="w-5 fill-current" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">			<path				d="M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"			></path>		</svg>		<div>			<p class="font-bold">Warning</p>			<p>Something has gone wrong.</p>		</div>		<div class="flex gap-1">			<button class="btn">More</button>			<button class="btn">Dismiss</button>		</div>	</div>	{/* Error */}	<div class="card p-4 preset-outlined-error-500 grid grid-cols-1 lg:grid-cols-[auto_1fr_auto] items-center gap-4">		<svg class="w-5 fill-current" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">			<path				d="M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"			></path>		</svg>		<div>			<p class="font-bold">Error</p>			<p>Something has gone wrong.</p>		</div>		<div class="flex gap-1">			<button class="btn">More</button>			<button class="btn">Dismiss</button>		</div>	</div></div>