Skip to content

Commit

Permalink
Update className prop for UserList.Block component of frontend Users …
Browse files Browse the repository at this point in the history
…route
  • Loading branch information
EXG1O committed Apr 23, 2024
1 parent 5465492 commit 7fa7a41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import classNames from 'classnames';
export type BlockProps = HTMLAttributes<HTMLDivElement>;

function Block({ className, ...props }: BlockProps): ReactElement {
return <div {...props} className={classNames('border rounded', className)} />;
return <div {...props} className={classNames('border rounded-1', className)} />;
}

export default Block

0 comments on commit 7fa7a41

Please sign in to comment.