Txt
Text component.
Properties
| Property | Type | Description |
|---|---|---|
text | SimpleSignal<string, this> | Text content |
fontSize | SimpleSignal<number, this> | Font size |
fontFamily | SimpleSignal<string, this> | Font family |
fontWeight | SimpleSignal<number, this> | Font weight |
fontStyle | SimpleSignal<string, this> | Font style |
lineHeight | SimpleSignal<number, this> | Line height |
align | SimpleSignal<string, this> | Alignment |
Examples
import {Txt} from '@wangyaoshen/locus';
const text = new Txt({
text: 'Hello, World!',
fontSize: 48,
fill: 'white',
});