mirror of
https://github.com/NohamR/gitprofile.git
synced 2026-05-25 12:27:17 +00:00
Merge pull request #352 from hkrvikrant/remove_capitalizing
Removed Capitalizing githib project #351
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
import { Fragment } from 'react';
|
|
||||||
import { AiOutlineStar, AiOutlineFork } from 'react-icons/ai';
|
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { ga, languageColor, skeleton } from '../../helpers/utils';
|
import { Fragment } from 'react';
|
||||||
|
import { AiOutlineFork, AiOutlineStar } from 'react-icons/ai';
|
||||||
import { MdInsertLink } from 'react-icons/md';
|
import { MdInsertLink } from 'react-icons/md';
|
||||||
|
import { ga, languageColor, skeleton } from '../../helpers/utils';
|
||||||
|
|
||||||
const Project = ({ repo, loading, github, googleAnalytics }) => {
|
const Project = ({ repo, loading, github, googleAnalytics }) => {
|
||||||
if (!loading && Array.isArray(repo) && repo.length === 0) {
|
if (!loading && Array.isArray(repo) && repo.length === 0) {
|
||||||
@@ -89,7 +89,7 @@ const Project = ({ repo, loading, github, googleAnalytics }) => {
|
|||||||
<div className="flex items-center">
|
<div className="flex items-center">
|
||||||
<div className="card-title text-lg tracking-wide flex text-base-content opacity-60">
|
<div className="card-title text-lg tracking-wide flex text-base-content opacity-60">
|
||||||
<MdInsertLink className="my-auto" />
|
<MdInsertLink className="my-auto" />
|
||||||
<span className="capitalize">{item.name}</span>
|
<span>{item.name}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<p className="mb-5 mt-1 text-base-content text-opacity-60 text-sm">
|
<p className="mb-5 mt-1 text-base-content text-opacity-60 text-sm">
|
||||||
|
|||||||
Reference in New Issue
Block a user