1
1
mirror of https://github.com/primer/css.git synced 2024-12-02 07:53:06 +03:00

Update Octicon import

This commit is contained in:
Michelle Tilley 2020-10-29 11:03:58 -07:00
parent c4a5d72b20
commit b771edf4b2
No known key found for this signature in database
GPG Key ID: 810E3A96D4CF00F4

View File

@ -1,6 +1,6 @@
import React from 'react'
import {Flex, Link, Text, Tooltip, Flash} from '@primer/components'
import Octicon, {Alert} from '@primer/octicons-react'
import Octicon, {AlertIcon} from '@primer/octicons-react'
import themeGet from '@styled-system/theme-get'
import DoctocatTable from '@primer/gatsby-theme-doctocat/src/components/table'
import styled from 'styled-components'
@ -198,7 +198,7 @@ function DeprecationFlag({variable, ...rest}) {
function DeprecationIcon() {
return (
<Text color="red.5">
<Octicon icon={Alert} />
<Octicon icon={AlertIcon} />
</Text>
)
}