Skip to content

Commit

Permalink
feat(admin-ui): fix path warning #1666
Browse files Browse the repository at this point in the history
  • Loading branch information
syntrydy committed Apr 15, 2024
1 parent 968ff15 commit 9787a96
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion admin-ui/app/components/SVG/menu/Saml.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ const Saml = ({ className, style }) => {

export default Saml
Saml.propTypes = {
style: PropTypes.node,
style: PropTypes.object,
className: PropTypes.string,
}
6 changes: 3 additions & 3 deletions admin-ui/app/components/SVG/menu/Smtp.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from "react"

const Stmp = ({ fill = '', className, style }) => {
const Stmp = ({ className, style }) => {
return (
<div className={className} style={style}>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" className="w-6 h-6">
<path fill-rule="evenodd" d="M5.478 5.559A1.5 1.5 0 016.912 4.5H9A.75.75 0 009 3H6.912a3 3 0 00-2.868 2.118l-2.411 7.838a3 3 0 00-.133.882V18a3 3 0 003 3h15a3 3 0 003-3v-4.162c0-.299-.045-.596-.133-.882l-2.412-7.838A3 3 0 0017.088 3H15a.75.75 0 000 1.5h2.088a1.5 1.5 0 011.434 1.059l2.213 7.191H17.89a3 3 0 00-2.684 1.658l-.256.513a1.5 1.5 0 01-1.342.829h-3.218a1.5 1.5 0 01-1.342-.83l-.256-.512a3 3 0 00-2.684-1.658H3.265l2.213-7.191z" clip-rule="evenodd" />
<path fill-rule="evenodd" d="M12 2.25a.75.75 0 01.75.75v6.44l1.72-1.72a.75.75 0 111.06 1.06l-3 3a.75.75 0 01-1.06 0l-3-3a.75.75 0 011.06-1.06l1.72 1.72V3a.75.75 0 01.75-.75z" clip-rule="evenodd" />
<path fillRule="evenodd" d="M5.478 5.559A1.5 1.5 0 016.912 4.5H9A.75.75 0 009 3H6.912a3 3 0 00-2.868 2.118l-2.411 7.838a3 3 0 00-.133.882V18a3 3 0 003 3h15a3 3 0 003-3v-4.162c0-.299-.045-.596-.133-.882l-2.412-7.838A3 3 0 0017.088 3H15a.75.75 0 000 1.5h2.088a1.5 1.5 0 011.434 1.059l2.213 7.191H17.89a3 3 0 00-2.684 1.658l-.256.513a1.5 1.5 0 01-1.342.829h-3.218a1.5 1.5 0 01-1.342-.83l-.256-.512a3 3 0 00-2.684-1.658H3.265l2.213-7.191z" clipRule="evenodd" />
<path fillRule="evenodd" d="M12 2.25a.75.75 0 01.75.75v6.44l1.72-1.72a.75.75 0 111.06 1.06l-3 3a.75.75 0 01-1.06 0l-3-3a.75.75 0 011.06-1.06l1.72 1.72V3a.75.75 0 01.75-.75z" clipRule="evenodd" />
</svg>
</div>
)
Expand Down
3 changes: 3 additions & 0 deletions admin-ui/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ render(
</I18nextProvider>,
document.querySelector('#root'),
)



0 comments on commit 9787a96

Please sign in to comment.