Skip to content
This repository has been archived by the owner on Feb 16, 2022. It is now read-only.

Commit

Permalink
refactor(list): names to lowercase
Browse files Browse the repository at this point in the history
ISSUES CLOSED: #81
  • Loading branch information
gochicus committed Jul 2, 2021
1 parent 80b954e commit 4e5f3b6
Show file tree
Hide file tree
Showing 17 changed files with 12 additions and 12 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions list/src/button/Button.tsx → list/src/button/button.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styled from '@emotion/styled'
import { layout } from 'styled-system'

import { ButtonProps } from './Button.interface'
import { baseStyles, colorStyles, sizeStyles } from './Button.styles'
import { ButtonProps } from './button.interface'
import { baseStyles, colorStyles, sizeStyles } from './button.styles'

export const Button = styled.div<ButtonProps>(baseStyles, sizeStyles, colorStyles, layout)
2 changes: 1 addition & 1 deletion list/src/button/index.tsx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './Button'
export * from './button'
File renamed without changes.
2 changes: 1 addition & 1 deletion list/src/condition/index.tsx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './Condition'
export * from './condition'
File renamed without changes.
6 changes: 3 additions & 3 deletions list/src/icons/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './HeartIcon'
export * from './TrashIcon'
export * from './StarIcon'
export * from './heartIcon'
export * from './trashIcon'
export * from './starIcon'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions list/src/layout/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './Layout'
export * from './Box'
export * from './Row'
export * from './Column'
export * from './layout'
export * from './box'
export * from './row'
export * from './column'
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion list/src/list.component.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { FC } from 'react'

import { Item as ListItem } from './Item'
import { Item as ListItem } from './item'
import { Column } from './layout'
import { ListProps } from './list.interface'

Expand Down

0 comments on commit 4e5f3b6

Please sign in to comment.