Plugin for building chat artboards inside Figma
Built with Figma Plugin DS Svelte
During development, watch your project for changes with the following command.
npm run dev
Start building your plugin UI in 'src/Plugin.svelte'
.
When ready to package up your final Figma Plugin:
npm run build
To include an external CSS file:
import styles from './styles.css';
To include an SVG:
import SvgName from './image.svg';
//use in your markup
{@html SvgName}