diff --git a/packages/react/src/stories/Icons.stories.tsx b/packages/react/src/stories/Icons.stories.tsx new file mode 100644 index 00000000000..ced9ca19cdf --- /dev/null +++ b/packages/react/src/stories/Icons.stories.tsx @@ -0,0 +1,36 @@ +import {StarFillIcon} from '@primer/octicons-react' +import React from 'react' +import {Stack} from '../Stack' + +export default { + title: 'Octicons', +} + +export const CustomClassname = () => { + return +} + +export const Fill = () => { + return ( + + + + + + + + + + + ) +} + +export const Size = () => { + return ( + + + + + + ) +}