Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(frosted-ui-icons): Add align justify icon set #216

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

iw-an
Copy link

@iw-an iw-an commented Oct 15, 2024

We were previously missing the justify icons, which we now need for rich-text, so I adapted the center icons to be full width

Copy link

vercel bot commented Oct 15, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
frosted-ui-storybook ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 15, 2024 5:46pm

Comment on lines +1 to +27
import * as React from 'react';
import { IconProps } from './types';

export const AlignJustify12 = React.forwardRef<SVGSVGElement, IconProps>(
({ color = 'currentColor', ...props }, forwardedRef) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlSpace="preserve"
width="12"
height="12"
{...props}
ref={forwardedRef}
>
<path
d="M2 2.1h8M2 4.7h8M2 10h8M2 7.4h8"
stroke={color}
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
},
);

export default AlignJustify12;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We shouldn't add icons manually. The icons should be added to our Figma file and then pulled in by our script

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants