-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
901f47d
commit d1db12d
Showing
4 changed files
with
41 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import type { SVGProps } from 'react'; | ||
import React from 'react'; | ||
|
||
interface NeutralFaceProps extends SVGProps<SVGSVGElement> { | ||
className?: string; | ||
} | ||
|
||
const NeutralFace = ({ className, ...args }: NeutralFaceProps) => { | ||
return ( | ||
<svg | ||
width="24" | ||
height="24" | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
className={className} | ||
{...args} | ||
> | ||
<path | ||
d="M9.12039 9.1199V8.1199C8.5681 8.1199 8.12039 8.56762 8.12039 9.1199H9.12039ZM9.21601 9.1199H10.216C10.216 8.56762 9.7683 8.1199 9.21601 8.1199V9.1199ZM14.8804 9.1199V8.1199C14.3281 8.1199 13.8804 8.56762 13.8804 9.1199H14.8804ZM14.9654 9.1199H15.9654C15.9654 8.56762 15.5177 8.1199 14.9654 8.1199V9.1199ZM9.21601 9.19678V10.1968C9.7683 10.1968 10.216 9.74906 10.216 9.19678H9.21601ZM9.12039 9.19678H8.12039C8.12039 9.74906 8.5681 10.1968 9.12039 10.1968V9.19678ZM14.9654 9.19678V10.1968C15.5177 10.1968 15.9654 9.74906 15.9654 9.19678H14.9654ZM14.8804 9.19678H13.8804C13.8804 9.74906 14.3281 10.1968 14.8804 10.1968V9.19678ZM8.67234 13.9191C8.12006 13.9191 7.67234 14.3668 7.67234 14.9191C7.67234 15.4713 8.12006 15.9191 8.67234 15.9191V13.9191ZM15.3284 15.9191C15.8807 15.9191 16.3284 15.4713 16.3284 14.9191C16.3284 14.3668 15.8807 13.9191 15.3284 13.9191V15.9191ZM20.6004 11.9999C20.6004 16.7495 16.75 20.5999 12.0004 20.5999V22.5999C17.8546 22.5999 22.6004 17.8541 22.6004 11.9999H20.6004ZM12.0004 20.5999C7.25074 20.5999 3.40039 16.7495 3.40039 11.9999H1.40039C1.40039 17.8541 6.14617 22.5999 12.0004 22.5999V20.5999ZM3.40039 11.9999C3.40039 7.25025 7.25074 3.3999 12.0004 3.3999V1.3999C6.14617 1.3999 1.40039 6.14568 1.40039 11.9999H3.40039ZM12.0004 3.3999C16.75 3.3999 20.6004 7.25025 20.6004 11.9999H22.6004C22.6004 6.14568 17.8546 1.3999 12.0004 1.3999V3.3999ZM9.12039 10.1199H9.21601V8.1199H9.12039V10.1199ZM14.8804 10.1199H14.9654V8.1199H14.8804V10.1199ZM8.21601 9.1199V9.19678H10.216V9.1199H8.21601ZM9.21601 8.19678H9.12039V10.1968H9.21601V8.19678ZM10.1204 9.19678V9.1199H8.12039V9.19678H10.1204ZM13.9654 9.1199V9.19678H15.9654V9.1199H13.9654ZM14.9654 8.19678H14.8804V10.1968H14.9654V8.19678ZM15.8804 9.19678V9.1199H13.8804V9.19678H15.8804ZM15.3284 13.9191H8.67234V15.9191H15.3284V13.9191Z" | ||
fill="currentColor" | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default NeutralFace; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters