feat: interact with user settings/profile (#9)

This commit is contained in:
Divlo
2022-02-19 23:20:33 +01:00
committed by GitHub
parent 48debe8638
commit 7ac4f86cd5
101 changed files with 6705 additions and 9777 deletions

View File

@ -1,6 +1,6 @@
import { Meta, Story } from '@storybook/react'
import { Divider as Component } from './'
import { Divider as Component } from '.'
const Stories: Meta = {
title: 'Divider',

View File

@ -1,6 +1,6 @@
import { render } from '@testing-library/react'
import { Divider } from './'
import { Divider } from '.'
describe('<Divider />', () => {
it('should render successfully', () => {

View File

@ -1,7 +1,7 @@
export const Divider: React.FC = () => {
return (
<div className='relative flex justify-center h-[2px] w-full mb-3'>
<div className='absolute h-[2px] w-8/12 bg-gray-600 dark:bg-white/20 rounded-full'></div>
<div className='relative mb-3 flex h-[2px] w-full justify-center'>
<div className='absolute h-[2px] w-8/12 rounded-full bg-gray-600 dark:bg-white/20'></div>
</div>
)
}