chore: change file name under ui dir

This commit is contained in:
QiShaoXuan
2022-12-28 17:31:01 +08:00
parent df30cc4861
commit 96383fc60d
29 changed files with 23 additions and 23 deletions
@@ -1,4 +1,4 @@
import Button from '@/ui/button/button';
import { Button } from '@/ui/button';
import { FC, useRef, ChangeEvent, ReactElement } from 'react';
import { styled } from '@/styles';
interface Props {
@@ -3,7 +3,7 @@ import { StyledButton } from './styles';
import { ButtonProps } from './interface';
import { getSize } from './utils';
import { Loading } from './loading';
import { Loading } from './Loading';
export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
(
+3 -3
View File
@@ -1,3 +1,3 @@
export * from './icon-button';
export * from './button';
export * from './text-button';
export * from './IconButton';
export * from './Button';
export * from './TextButton';
+1 -1
View File
@@ -1 +1 @@
export * from './confirm';
export * from './Confirm';
@@ -1,5 +1,5 @@
import { CSSProperties } from 'react';
import { EmptySVG } from './emptySVG';
import { EmptySVG } from './EmptySVG';
import { styled } from '@/styles';
export type ContentProps = {
+1 -1
View File
@@ -1 +1 @@
export * from './empty';
export * from './Empty';
+2 -2
View File
@@ -1,3 +1,3 @@
export * from './input';
import { Input } from './input';
export * from './Input';
import { Input } from './Input';
export default Input;
+2 -2
View File
@@ -1,2 +1,2 @@
export * from './wrapper';
export * from './content';
export * from './Wrapper';
export * from './Content';
+2 -2
View File
@@ -1,3 +1,3 @@
export * from './menu';
export * from './Menu';
// export { StyledMenuItem as MenuItem } from './styles';
export * from './menu-item';
export * from './MenuItem';
+4 -4
View File
@@ -1,7 +1,7 @@
import Modal from './modal';
import Modal from './Modal';
export * from './modal-close-button';
export * from './modal-wrapper';
export * from './modal';
export * from './ModalCloseButton';
export * from './ModalWrapper';
export * from './Modal';
export default Modal;
+5 -5
View File
@@ -5,8 +5,8 @@
// import TableRow from '@mui/material/TableRow';
//
export * from './table';
export * from './table-body';
export * from './table-cell';
export * from './table-head';
export * from './table-row';
export * from './Table';
export * from './TableRow';
export * from './TableHead';
export * from './TableCell';
export * from './TableBody';