Is there a way to create an SPFx webpart that extends or is otherwise based on an existing built-in webpart? In particular, I want to create a text editor using the default "Text" webpart.
I would like to use the built-in functionality, not mimic it by importing CKE myself.
Something like this maybe?
export default class MyTextWebPart extends TextClientSideWebPart<IMyTextWebPartProps> {
Instead of
export default class MyTextWebPart extends BaseClientSideWebPart<IMyTextWebPartProps> {