2
0

feat(editor): Start preview from any block

This commit is contained in:
Baptiste Arnaud
2022-06-02 10:07:50 +02:00
parent 12f2e40152
commit 89d91f9114
15 changed files with 128 additions and 29 deletions

View File

@ -451,3 +451,9 @@ export const CreditCardIcon = (props: IconProps) => (
<line x1="1" y1="10" x2="23" y2="10"></line>
</Icon>
)
export const PlayIcon = (props: IconProps) => (
<Icon viewBox="0 0 24 24" {...featherIconsBaseProps} {...props}>
<polygon points="5 3 19 12 5 21 5 3"></polygon>
</Icon>
)