fix: Change bg-neutral to bg-border (#723)

This commit is contained in:
Aman Harwara
2021-11-05 20:43:27 +05:30
committed by GitHub
parent e1e38c65db
commit 2fdb748bab
2 changed files with 6 additions and 6 deletions

View File

@@ -2,9 +2,9 @@ import { FunctionalComponent } from 'preact';
type Props = {
classes?: string;
}
export const HorizontalSeparator: FunctionalComponent<Props> = ({
classes = ''
}) => {
return <hr className={`h-1px w-full bg-neutral no-border ${classes}`} />;
};
export const HorizontalSeparator: FunctionalComponent<Props> = ({
classes = '',
}) => {
return <hr className={`h-1px w-full bg-border no-border ${classes}`} />;
};

View File

@@ -44,7 +44,7 @@ export const ModalDialogLabel: FunctionComponent<{
Close
</div>
</div>
<hr className="h-1px bg-neutral no-border m-0" />
<hr className="h-1px bg-border no-border m-0" />
</AlertDialogLabel>
);