mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-16 09:36:17 +08:00
chore: change file name under ui dir
This commit is contained in:
@@ -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>(
|
||||
(
|
||||
@@ -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 @@
|
||||
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 @@
|
||||
export * from './empty';
|
||||
export * from './Empty';
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
export * from './input';
|
||||
import { Input } from './input';
|
||||
export * from './Input';
|
||||
import { Input } from './Input';
|
||||
export default Input;
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
export * from './wrapper';
|
||||
export * from './content';
|
||||
export * from './Wrapper';
|
||||
export * from './Content';
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
export * from './menu';
|
||||
export * from './Menu';
|
||||
// export { StyledMenuItem as MenuItem } from './styles';
|
||||
export * from './menu-item';
|
||||
export * from './MenuItem';
|
||||
|
||||
@@ -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,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';
|
||||
|
||||
Reference in New Issue
Block a user