Text

Lorem Ipsum

Props

PropTypeDefault/Notes
colorStringDefault: black8; Pass the name of any color variable to this prop
sizeStringDefault: xsmall; Accepts xsmall, small, large, xlarge
weightStringDefault: normal ; Accepts normal, medium, bold
inverseStringDefault: false; Optimizes letter-spacing for light on dark applications

Example usage

<template>
	<Txt>Lorem Ipsum</Txt>
</template>

<script>
	import { Txt } from 'figma-plugin-ds-vue'

	export default {
		components: {
			Txt
		}
	}
</script>