import { Blockquote } from '@mantine/core';
import { InfoIcon } from '@phosphor-icons/react';
function Demo() {
const icon = <InfoIcon />;
return (
<Blockquote color="blue" iconSize={38} cite="– Forrest Gump" icon={icon} mt="xl">
Life is like an npm install – you never know what you are going to get.
</Blockquote>
);
}