mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
3ee244db92
* add figma-create-plugin ui * first attempt * more changes * update packages * fix stuff * implement reload action * simplify code * create wrapper * fix logo * adjust sizes * add changelog * update design again * temporary fix --------- Co-authored-by: Alex Sánchez <sion333@gmail.com>
21 lines
517 B
TypeScript
21 lines
517 B
TypeScript
import Penpot from '@ui/assets/penpot.svg?react';
|
|
import { PenpotExporter } from '@ui/components/PenpotExporter';
|
|
import { Stack } from '@ui/components/Stack';
|
|
|
|
import { Wrapper } from './components/Wrapper/Wrapper';
|
|
|
|
export const App = () => (
|
|
<Wrapper>
|
|
<Stack space="medium">
|
|
<Penpot
|
|
style={{
|
|
alignSelf: 'center',
|
|
height: 'auto',
|
|
width: '8.125rem',
|
|
fill: 'var(--figma-color-icon)'
|
|
}}
|
|
/>
|
|
<PenpotExporter />
|
|
</Stack>
|
|
</Wrapper>
|
|
);
|