Revert export twenty UI (#17929)

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Charles Bochet
2026-02-13 17:55:04 +01:00
committed by GitHub
parent c173f01601
commit a95a286c59
121 changed files with 386 additions and 10004 deletions
@@ -5,7 +5,7 @@ const StyledSoonPill = styled(Pill)`
margin-left: auto;
`;
export type ButtonSoonProps = {
type ButtonSoonProps = {
label?: string;
};
@@ -6,7 +6,7 @@ import {
type LightIconButtonProps,
} from '@ui/input/button/components/LightIconButton';
export type ColorPickerButtonProps = Pick<ColorSampleProps, 'colorName'> &
type ColorPickerButtonProps = Pick<ColorSampleProps, 'colorName'> &
Pick<LightIconButtonProps, 'onClick'> & {
isSelected?: boolean;
};
@@ -5,7 +5,7 @@ import React, { type FunctionComponent } from 'react';
export type MainButtonVariant = 'primary' | 'secondary';
export type Props = {
type Props = {
title: string;
fullWidth?: boolean;
width?: number;
@@ -102,7 +102,7 @@ const StyledButton = styled.button<
}};
`;
export type MainButtonProps = Props & {
type MainButtonProps = Props & {
Icon?: IconComponent | FunctionComponent<{ size: number }>;
};
@@ -28,7 +28,7 @@ const StyledIconButton = styled.button<{ size: RoundedIconButtonSize }>`
width: ${({ size }) => (size === 'small' ? '20px' : '24px')};
`;
export type RoundedIconButtonProps = {
type RoundedIconButtonProps = {
Icon: IconComponent;
size?: RoundedIconButtonSize;
} & React.ButtonHTMLAttributes<HTMLButtonElement>;
@@ -4,7 +4,7 @@ import { TabContent } from '@ui/input/button/components/TabButton/internals/comp
import { type ReactElement } from 'react';
import { Link } from 'react-router-dom';
export type TabButtonProps = {
type TabButtonProps = {
id: string;
active?: boolean;
disabled?: boolean;