@im-ian/react-survey
Version:
2018~2019년에 제작했던 React 설문 모듈입니다. 아카이브 용도로 업로드 되었습니다.
22 lines (18 loc) • 572 B
text/typescript
import { HTMLAttributes } from "react";
export type BaseSectionProps = HTMLAttributes<HTMLDivElement>;
export interface FlexContainerProps extends BaseSectionProps {
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse";
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
justifyContent?:
| "flex-start"
| "flex-end"
| "center"
| "space-between"
| "space-around";
}
export interface FlexElementProps extends BaseSectionProps {
width: "flex" | number;
}
export interface ThemeProps {
color: string;
}