Frame Anchor
<Plot
frame
height={300}
axes={false}
x={{ domain: [0, 10] }}
y={{ domain: [0, 10] }}>
{#each ['top', 'bottom', 'center', 'left', 'right', 'top-left', 'top-right', 'bottom-left', 'bottom-right'] as frameAnchor (frameAnchor)}
<Text
{frameAnchor}
fontSize={18}
text={frameAnchor} />
{/each}
</Plot>