Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/component-examples/BranchName.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import Octicon, {GitBranch} from '@github/octicons-react'
import Octicon, {GitBranch} from '@githubprimer/octicons-react'
import {Detail} from '@compositor/kit'
import ExampleHeading from '../doc-components/ExampleHeading'
import {BranchName} from '../../src'
Expand Down
2 changes: 1 addition & 1 deletion examples/component-examples/CircleOcticon.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import {Check} from '@github/octicons-react'
import {Check} from '@githubprimer/octicons-react'
import {CircleOcticon} from '../../src'

const CircleOcticonExample = {
Expand Down
2 changes: 1 addition & 1 deletion examples/component-examples/StateLabel.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import Octicon, {GitBranch} from '@github/octicons-react'
import Octicon, {GitBranch} from '@githubprimer/octicons-react'
import {Block, StateLabel} from '../../src'
import ExampleHeading from '../doc-components/ExampleHeading'

Expand Down
2 changes: 1 addition & 1 deletion examples/demos/MergeDetail.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import PropTypes from 'prop-types'
import {Check} from '@github/octicons-react'
import {Check} from '@githubprimer/octicons-react'
import {Block, CircleOcticon, Text} from '../../src'

const stateColorMap = {
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
]
},
"dependencies": {
"@github/octicons-react": "7.4.0-alpha.92883216",
"@githubprimer/octicons-react": "8.0.0",
"classnames": "^2.2.5",
"d3-shape": "^1.2.0",
"react": "^16.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/CircleOcticon.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import PropTypes from 'prop-types'
import classnames from 'classnames'
import Octicon from '@github/octicons-react'
import Octicon from '@githubprimer/octicons-react'

const CircleOcticon = ({size, bg, color, ...rest}) => {
const className = classnames(
Expand Down
2 changes: 1 addition & 1 deletion src/MergeStatus.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import PropTypes from 'prop-types'
import Octicon, {GitMerge} from '@github/octicons-react'
import Octicon, {GitMerge} from '@githubprimer/octicons-react'
import StateLabel from './StateLabel'

const stateColorMap = {
Expand Down
2 changes: 1 addition & 1 deletion src/StateLabel.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import PropTypes from 'prop-types'
import Octicon, {GitMerge, IssueClosed, IssueOpened, IssueReopened} from '@github/octicons-react'
import Octicon, {GitMerge, IssueClosed, IssueOpened, IssueReopened} from '@githubprimer/octicons-react'
import classnames from 'classnames'
import {colors} from './theme'

Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/StateLabel.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import Octicon, {IssueOpened} from '@github/octicons-react'
import Octicon, {IssueOpened} from '@githubprimer/octicons-react'
import StateLabel from '../StateLabel'
import {render} from '../utils/testing'

Expand Down