mirror of
https://github.com/penpot/penpot.git
synced 2026-05-23 00:43:41 +00:00
66 lines
2.5 KiB
TypeScript
66 lines
2.5 KiB
TypeScript
export * from "./lib/example/Example";
|
|
export { Text } from "./lib/foundations/typography/Text";
|
|
export type { TextProps } from "./lib/foundations/typography/Text";
|
|
export { Heading } from "./lib/foundations/typography/Heading";
|
|
export type { HeadingProps } from "./lib/foundations/typography/Heading";
|
|
export {
|
|
Typography,
|
|
typographyIds,
|
|
typographySet,
|
|
} from "./lib/foundations/typography/typography";
|
|
export type { TypographyId } from "./lib/foundations/typography/typography";
|
|
export { Cta } from "./lib/product/Cta";
|
|
export type { CtaProps } from "./lib/product/Cta";
|
|
export { Loader } from "./lib/product/Loader";
|
|
export type { LoaderProps, LoaderTip } from "./lib/product/Loader";
|
|
export { Avatar } from "./lib/product/Avatar";
|
|
export type {
|
|
AvatarProps,
|
|
AvatarProfile,
|
|
AvatarVariant,
|
|
} from "./lib/product/Avatar";
|
|
export { PanelTitle } from "./lib/product/PanelTitle";
|
|
export type { PanelTitleProps } from "./lib/product/PanelTitle";
|
|
export { Icon, iconIds } from "./lib/foundations/assets/Icon";
|
|
export type { IconId, IconProps } from "./lib/foundations/assets/Icon";
|
|
export { RawSvg, rawSvgIds } from "./lib/foundations/assets/RawSvg";
|
|
export type { RawSvgId, RawSvgProps } from "./lib/foundations/assets/RawSvg";
|
|
export { Button } from "./lib/buttons/Button";
|
|
export type { ButtonProps, ButtonVariant } from "./lib/buttons/Button";
|
|
export { IconButton } from "./lib/buttons/IconButton";
|
|
export type {
|
|
IconButtonProps,
|
|
IconButtonVariant,
|
|
} from "./lib/buttons/IconButton";
|
|
export { Swatch } from "./lib/utilities/Swatch";
|
|
export type {
|
|
SwatchProps,
|
|
SwatchBackground,
|
|
SwatchGradient,
|
|
SwatchGradientStop,
|
|
SwatchSize,
|
|
} from "./lib/utilities/Swatch";
|
|
export { Label } from "./lib/controls/utilities/Label";
|
|
export type { LabelProps } from "./lib/controls/utilities/Label";
|
|
export { HintMessage } from "./lib/controls/utilities/HintMessage";
|
|
export type {
|
|
HintMessageProps,
|
|
HintMessageType,
|
|
} from "./lib/controls/utilities/HintMessage";
|
|
export { Switch } from "./lib/controls/Switch";
|
|
export type { SwitchProps } from "./lib/controls/Switch";
|
|
export { Checkbox } from "./lib/controls/Checkbox";
|
|
export type { CheckboxProps } from "./lib/controls/Checkbox";
|
|
export { InputField } from "./lib/controls/utilities/InputField";
|
|
export type {
|
|
InputFieldProps,
|
|
InputFieldVariant,
|
|
InputFieldHintType,
|
|
} from "./lib/controls/utilities/InputField";
|
|
export { Input } from "./lib/controls/Input";
|
|
export type {
|
|
InputProps,
|
|
InputVariant,
|
|
InputHintType,
|
|
} from "./lib/controls/Input";
|