mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -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>
37 lines
869 B
TypeScript
37 lines
869 B
TypeScript
import classNames from 'classnames';
|
|
import { CSSProperties, PropsWithChildren } from 'react';
|
|
|
|
import styles from './Stack.module.css';
|
|
|
|
type StackProps = PropsWithChildren & {
|
|
space?: 'medium' | 'small' | 'xsmall' | '2xsmall';
|
|
direction?: 'column' | 'row';
|
|
horizontalAlign?: 'start' | 'center';
|
|
style?: CSSProperties;
|
|
as?: 'div' | 'ol';
|
|
};
|
|
|
|
export const Stack = ({
|
|
space = 'medium',
|
|
direction = 'column',
|
|
horizontalAlign = 'start',
|
|
style,
|
|
as = 'div',
|
|
children
|
|
}: StackProps) => {
|
|
const Tag = as;
|
|
|
|
return (
|
|
<Tag
|
|
className={classNames({
|
|
[styles.stack]: true,
|
|
[styles[`stack-${space}`]]: space !== 'medium',
|
|
[styles[`stack-${direction}`]]: direction !== 'column',
|
|
[styles[`stack-${horizontalAlign}`]]: horizontalAlign !== 'start'
|
|
})}
|
|
style={style}
|
|
>
|
|
{children}
|
|
</Tag>
|
|
);
|
|
};
|