What is the `post-status` icon handle when using `@wordpress/icons`?

So after a little digging and being maybe a little bit oblivious 😅. The correct way to use dashicons within WordPress is as follows;

import { Dashicon } from "@wordpress/components";

<Dashicon icon="post-status" />

Note: This info can be found in the Developer Resources: Dashicons docs, but annoyingly it is buried at the bottom of the page. There are no links to this info at the top of the page, so I didn’t even know it existed. 🙃

Anyways, here’s a direct link to the instructions on how to use Dashicons from @wordpress/components You’ll find the specifics under Block Usage.